|
|
@@ -40,9 +40,9 @@ public class TaxSourceController extends BaseController {
|
|
|
return HttpResult.ok(ptlAreaLicenseService.getByParentNumber("14"));
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/insureCompany")
|
|
|
+ @PostMapping("/insureCompany")
|
|
|
@ApiOperation("获取保险公司")
|
|
|
- public HttpResult insureCompany(CompanyPageVo companyPageVo) {
|
|
|
+ public HttpResult insureCompany(@RequestBody CompanyPageVo companyPageVo) {
|
|
|
Page page = buildPageRequest(companyPageVo.getPageDto());
|
|
|
Page<EsmInsCompany> insureCompany = taxSourceService.getInsureCompany(page, companyPageVo);
|
|
|
return HttpResult.ok(insureCompany);
|