增加点位打卡功能,以及关联功能

This commit is contained in:
2025-09-08 20:00:30 +08:00
parent 98eb02a007
commit d32e8436a5
50 changed files with 5281 additions and 185 deletions

View File

@ -32,6 +32,13 @@ public interface TbZdxlFgxlrwService {
*/
IPage<TbZdxlFgxlrwVO> selectPage(TbZdxlFgxlrwQuery query);
/**
* 查询分页(需要执行的任务)
* @param query 实体查询对象
* @return 实体返回信息分页列表
*/
IPage<TbZdxlFgxlrwVO> selectRwPage(TbZdxlFgxlrwQuery query);
/**
* 查询列表
* @param query 实体查询对象
@ -39,6 +46,13 @@ public interface TbZdxlFgxlrwService {
*/
List<TbZdxlFgxlrwVO> selectList(TbZdxlFgxlrwQuery query);
/**
* 查询列表根据主键ID字符串
* @param ids 主键ID字符串
* @return 实体返回信息列表
*/
List<TbZdxlFgxlrw> selectListByIds(String ids);
/**
* 查询列表(根据任务日期)
* @param rwRq 任务日期
@ -67,4 +81,11 @@ public interface TbZdxlFgxlrwService {
*/
int importListByMb(List<TbZdxlFgxlrw> entityList);
/**
* 下发列表
* @param entityList 需下发的列表
* @return 操作条数
*/
int issueList(List<TbZdxlFgxlrw> entityList);
}