Commit 9bee2c92 authored by Administrator's avatar Administrator

git

parent d1d13c92
......@@ -62,6 +62,8 @@ public class UserApi {
private ReceiptListService receiptListService;
@Autowired
private FailedTypeService failedTypeService;
@Autowired
private ProdCardService prodCardService;
// @Autowired
// private ReadCountyListXMLService readCountyListXMLService;
......@@ -510,8 +512,8 @@ public class UserApi {
*/
@RequestMapping("selectProdCard")
// @RequiresPermissions("userInfo.add")//权限管理;
public String selectProdCard(@RequestParam("idNo") String idNo,@RequestParam("acceptNo") String acceptNo, HttpServletResponse resp) {
List<Map<String,Object>> taskEntity = taskService.getProdCard(idNo,acceptNo);
public String selectProdCard(@RequestParam("idNo") List idNo, HttpServletResponse resp) {
List<ProdCardEntity> taskEntity = prodCardService.getProdCard(idNo);
YXJSONResponse yxjsonResponse = new YXJSONResponse();
resp.setCharacterEncoding("UTF-8");
yxjsonResponse.outPutSuccess(taskEntity);
......
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