|
|
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.kxs.product.api.model.KxsGdReport;
|
|
|
import com.kxs.product.api.vo.kxsapp.gd.GdReportListVO;
|
|
|
+import com.kxs.product.api.vo.kxsapp.machine.MachineUnBindListVO;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
@@ -26,5 +27,15 @@ public interface KxsGdReportMapper extends BaseMapper<KxsGdReport> {
|
|
|
* @return {@link IPage}<{@link GdReportListVO}>
|
|
|
*/
|
|
|
IPage<GdReportListVO> getByPage(Page<GdReportListVO> page, @Param("userId") Long userId, @Param("status") Integer status, @Param("keyword") String keyword);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 未绑定未报备广电sn列表
|
|
|
+ *
|
|
|
+ * @param page 页
|
|
|
+ * @param userId 用户 ID
|
|
|
+ * @param posSn POS SN
|
|
|
+ * @return {@link IPage}<{@link MachineUnBindListVO}>
|
|
|
+ */
|
|
|
+ IPage<MachineUnBindListVO> getByUnBindPage(Page<MachineUnBindListVO> page, @Param("userId") Long userId, @Param("posSn") String posSn);
|
|
|
}
|
|
|
|