Commit 9bc7f0dc authored by libin's avatar libin

小程序分公司接口查询

parent 8f0b7221
......@@ -85,6 +85,11 @@ public class BranchCompanyController extends BaseController<BranchCompanyBiz> {
return RestResponse.data(baseBiz.getAll());
}
@GetMapping("/app/unauth/list")
public RestResponse<List<BranchCompany>> findAll(){
return RestResponse.data(baseBiz.getAll());
}
@RequestMapping(value ="/{id}",method = RequestMethod.GET)
public RestResponse<BranchCompany> get(@PathVariable Integer id) {
return RestResponse.data(baseBiz.getById(id));
......
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