Commit 473d9a87 authored by dahai's avatar dahai

修改查询XML制证信息

parent 5d1704e0
...@@ -137,8 +137,6 @@ public class ReadExcelApi { ...@@ -137,8 +137,6 @@ public class ReadExcelApi {
personPostEntity.setLatticeMouthInformation((String) list2.get(19)); personPostEntity.setLatticeMouthInformation((String) list2.get(19));
personPostEntity.setNatureOfTheInternal((String) list2.get(20)); personPostEntity.setNatureOfTheInternal((String) list2.get(20));
personPostEntity.setNatureOfTheInformation((String) list2.get(21)); personPostEntity.setNatureOfTheInformation((String) list2.get(21));
System.out.println(list2.get(23).toString());
System.out.println(list2.get(23).toString().length());
personPostEntity.setFirstWhite(list2.get(22).toString().substring(5,24) ); personPostEntity.setFirstWhite(list2.get(22).toString().substring(5,24) );
personPostEntity.setFileId(fileNameDicEntity.getFileId()); personPostEntity.setFileId(fileNameDicEntity.getFileId());
entityList.add(personPostEntity); entityList.add(personPostEntity);
......
...@@ -90,11 +90,9 @@ public class TaskListApi { ...@@ -90,11 +90,9 @@ public class TaskListApi {
* @return * @return
*/ */
@RequestMapping("queryByCountyAtACCU") @RequestMapping("queryByCountyAtACCU")
public String queryByCountyAtACCU(@RequestParam("state") String state, HttpServletResponse resp){ public List<Object> queryByCountyAtACCU(@RequestParam("state") String state, HttpServletResponse resp){
YXJSONResponse yxjsonResponse = new YXJSONResponse(); List<Object> objects = taskListService.selectByCountyAtACCU(state);
resp.setCharacterEncoding("UTF-8"); return objects;
yxjsonResponse.outPutSuccess(taskListService.selectByCountyAtACCU(state));
return yxjsonResponse.toJSONString();
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment