| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.dk.mdm.controller.mst;
- import com.dk.common.model.pojo.PageList;
- import com.dk.common.response.ResponseResultVO;
- import com.dk.mdm.model.pojo.mst.Customer;
- import com.dk.common.service.BaseService;
- import com.dk.mdm.model.query.mst.CustomerQuery;
- import com.dk.mdm.model.response.mst.CustomerResponse;
- import com.dk.mdm.model.vo.mst.CustomerVO;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RestController;
- import io.swagger.annotations.Api;
- import com.dk.mdm.service.mst.CustomerService;
- @Api(tags = "客户资料API接口")
- @RestController
- @RequestMapping("/mst/customer")
- public class CustomerController{
- public BaseService<Customer> getService() {
- return customerService;
- }
- @Autowired
- private CustomerService customerService;
- /**
- * @desc : 条件查询
- * @author : 于继渤
- * @date : 2024/2/26 10:36
- */
- @ApiOperation(value = "分页、关联、条件查询", notes = "分页、关联、条件查询")
- @PostMapping({"list_by"})
- public ResponseResultVO<PageList<CustomerResponse>> selectByCond(@RequestBody CustomerQuery customerQuery) {
- return customerService.selectByCond(customerQuery);
- }
- /**
- * @desc : 新建
- * @author : 于继渤
- * @date : 2023/1/5 9:39
- */
- @ApiOperation( value = "新建", notes = "v" )
- @PostMapping({"insert"})
- public ResponseResultVO<?> insert(@RequestBody CustomerVO customerVO) {
- return customerService.insert(customerVO);
- }
- /**
- * @desc : 编辑
- * @author : 于继渤
- * @date : 2023/1/5 9:39
- */
- @ApiOperation( value = "编辑", notes = "编辑" )
- @PostMapping({"update"})
- public ResponseResultVO<?> update(@RequestBody CustomerVO customerVO) {
- return customerService.update(customerVO);
- }
- }
|