Commit 273ea06e authored by 刘_震's avatar 刘_震

Merge remote-tracking branch 'origin/master'

parents 81bc02c1 69367beb
...@@ -85,7 +85,8 @@ public class WagesController { ...@@ -85,7 +85,8 @@ public class WagesController {
@RequestMapping("/lxWages") @RequestMapping("/lxWages")
public AjaxResult LinXiExcelAnalysisWages(@RequestParam("file") MultipartFile file, @RequestParam String date, @RequestParam String mineId, @RequestParam String identification){ public AjaxResult LinXiExcelAnalysisWages(@RequestParam("file") MultipartFile file, @RequestParam String date, @RequestParam String mineId, @RequestParam String identification){
String s = wagesService.linXiExcelAnalysisWages(file, date, mineId, identification); String s = wagesService.linXiExcelAnalysisWages(file, date, mineId, identification);
return new AjaxResult(200, s); int n = s.equals("请填写excel表类型") ? 500 : s.equals("对照表不完善") ? 500 : 200;
return new AjaxResult(n, s);
} }
......
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