|
@@ -102,12 +102,10 @@ public class CustomerCompanyTypeController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "企业类型全部数据")
|
|
|
- @ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "customerCompanyTypeForm",value = "企业类型信息",dataType = "CustomerCompanyTypeForm")
|
|
|
- })
|
|
|
@ApiResponse(code = 0, message = "操作成功")
|
|
|
- @PostMapping("/all")
|
|
|
- public ResponseBase selectAll(@RequestBody CustomerCompanyTypeForm customerCompanyTypeForm){
|
|
|
+ @GetMapping("/all")
|
|
|
+ public ResponseBase selectAll(){
|
|
|
+ CustomerCompanyTypeForm customerCompanyTypeForm = new CustomerCompanyTypeForm();
|
|
|
List<CustomerCompanyType> list = customerCompanyTypeService.selectCompanyTypeList(customerCompanyTypeForm);
|
|
|
return responseResultSuccess(list);
|
|
|
}
|