|
@@ -41,6 +41,15 @@ public class FillGatherTaskDetailServiceImpl extends BaseServiceImpl<FillGatherT
|
|
|
return new MyPage(mapper.selectList(record));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void updateSortNum(String id, Integer sortNum) {
|
|
|
+ FillGatherTaskDetail detail = new FillGatherTaskDetail();
|
|
|
+ detail.setId(id);
|
|
|
+ detail.setSortNum(sortNum);
|
|
|
+ mapper.updateByPrimaryKeySelective(detail);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public AbstractPageResultBean<FillGatherTaskDetail> selectPageInfo(FillGatherTaskDetailDTO record, int pageNum, int pageSize) {
|
|
|
PageHelper.startPage(pageNum, pageSize);
|