|
@@ -13,6 +13,8 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
|
import com.dk.mdm.service.mst.CustomerService;
|
|
import com.dk.mdm.service.mst.CustomerService;
|
|
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+
|
|
|
@Api(tags = "客户资料API接口")
|
|
@Api(tags = "客户资料API接口")
|
|
|
@RestController
|
|
@RestController
|
|
|
@RequestMapping("/mst/customer")
|
|
@RequestMapping("/mst/customer")
|
|
@@ -69,4 +71,11 @@ public class CustomerController{
|
|
|
public ResponseResultVO<?> selectByIdRespone(@PathVariable String id) {
|
|
public ResponseResultVO<?> selectByIdRespone(@PathVariable String id) {
|
|
|
return customerService.selectByIdRespone(id);
|
|
return customerService.selectByIdRespone(id);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation(value = "不分页", notes = "分页、关联、条件查询")
|
|
|
|
|
+ @PostMapping({"select_by_cond_no_page"})
|
|
|
|
|
+ public ResponseResultVO<List<CustomerResponse>> selectByCondNoPage(@RequestBody CustomerQuery customerQuery) {
|
|
|
|
|
+ return customerService.selectByCondNoPage(customerQuery);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|