Commit 9037e6dc authored by chengwenlong's avatar chengwenlong

林西矿公式回显

parent 3d232d8c
......@@ -57,9 +57,9 @@ public class WagesConversionController extends BaseController {
}
@GetMapping("/recentFormulas/{id}")
public AjaxResult recentFormulas(@RequestParam("id") String mineId){
public AjaxResult recentFormulas(@PathVariable("id") String mineId){
Object o = wagesConversionService.recentFormulas(mineId);
if (o instanceof List){
if (o!=null){
return new AjaxResult(200, "成功", o);
}
return new AjaxResult(500, (String) o, null);
......
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