Commit e8959f7e authored by cuijun's avatar cuijun

复制接口

parent bced7623
...@@ -36,4 +36,14 @@ public class IndustryApplicationInfoController extends BaseController<IndustryAp ...@@ -36,4 +36,14 @@ public class IndustryApplicationInfoController extends BaseController<IndustryAp
return ObjectRestResponse.succ(baseBiz.selectById(id)); return ObjectRestResponse.succ(baseBiz.selectById(id));
} }
@PostMapping(value = "/addUpdate")
public ObjectRestResponse addUpdateone(@RequestBody IndustryApplicationInfo industryApplicationInfo) {
return baseBiz.addObj(industryApplicationInfo);
}
@GetMapping(value = "/getList")
public ObjectRestResponse getListone(IndustryApplicationInfoDto industryApplicationInfoDto) {
return baseBiz.selectList(industryApplicationInfoDto);
}
} }
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