增加点位打卡功能,以及关联功能
This commit is contained in:
@ -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);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user