APP打回bug修复

pull/14/head
zhaoyu 2024-02-03 09:28:16 +08:00
parent 7992101af8
commit 6cd4575ae2
1 changed files with 1 additions and 3 deletions

View File

@ -95,13 +95,11 @@ public class AppSafetyEnvironmentalInspectorController extends BaseController {
uBean.put("INSPECTION_USER_SIGN_IMG", Const.FILEPATHFILE + pd.getString("CORPINFO_ID") + "/" + ffile + "/" + fileName);
strings.add(uBean.getString("INSPECTION_USER_SIGN_IMG")+"@@"+fileName);
}
pd.put("uBean", JSON.toJSONString(uBean));
PageData verify = safetyenvironmentalinspectorService.verify(uBean);
pd.put("verify",JSON.toJSONString(verify));
map.put("pd", pd);
map.put("result", errInfo);
map.put("sendPicturesList",JSON.toJSONString(strings));
map.put("dockData", JSON.toJSONString(pd));
map.put("dockData", JSON.toJSONString(verify));
return map;
}