删除辨识部位提示信息修正

pull/14/head
liulixin 2024-02-01 10:47:57 +08:00
parent f0f9d01c04
commit ea8dd8e1a6
1 changed files with 2 additions and 4 deletions

View File

@ -278,7 +278,7 @@ public class IdentificationPartsController extends BaseController {
@DockAnnotation
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
String errInfo = "success";
String errInfo = "fail";
PageData pd = new PageData();
pd = this.getPageData();
String DATA_IDS = pd.getString("DATA_IDS");
@ -295,11 +295,9 @@ public class IdentificationPartsController extends BaseController {
pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间
identificationpartsService.delete(pd);
errInfo = "success";
}
// identificationpartsService.deleteAll(ArrayDATA_IDS);
errInfo = "success";
}else{
errInfo = "fail";
}
pd.put("DATA_IDS",DATA_IDS);
map.put("dockData", JSON.toJSONString(pd));