浏览代码

* 补充提交

顾绍勇 5 年前
父节点
当前提交
c389f72742

+ 2
- 1
src/main/java/com/huiju/estateagents/service/impl/TaPreselectionRecordServiceImpl.java 查看文件

228
     public ResponseBean batchDeletePreselectRecord(List<TaPreselectionRecord> preselectionRecordList, Integer orgId) {
228
     public ResponseBean batchDeletePreselectRecord(List<TaPreselectionRecord> preselectionRecordList, Integer orgId) {
229
         ResponseBean responseBean = new ResponseBean();
229
         ResponseBean responseBean = new ResponseBean();
230
 
230
 
231
-
231
+        taPreselectionRecordMapper.batchDeletePreselectRecord(preselectionRecordList, orgId);
232
+        responseBean.addSuccess("success");
232
         return responseBean;
233
         return responseBean;
233
     }
234
     }
234
 
235