更新代码
This commit is contained in:
parent
d1cd46f67f
commit
5818693230
@ -171,17 +171,4 @@ public class CustomerMainController {
|
|||||||
busiLabelService.saveBusiLable(saveReqVO.getId(), TABLE_BASE_CUSTOMER_MAIN, saveReqVO.getLabelList());
|
busiLabelService.saveBusiLable(saveReqVO.getId(), TABLE_BASE_CUSTOMER_MAIN, saveReqVO.getLabelList());
|
||||||
return success(true);
|
return success(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户列表
|
|
||||||
*
|
|
||||||
* @author 小李
|
|
||||||
* @date 14:02 2024/9/13
|
|
||||||
**/
|
|
||||||
@GetMapping("/list")
|
|
||||||
@Operation(summary = "用户列表")
|
|
||||||
public CommonResult<?> getCustomerMainList(){
|
|
||||||
return success(customerMainService.list());
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
@ -27,6 +27,4 @@ public interface CustomerMainMapper extends BaseMapper<CustomerMain> {
|
|||||||
* @date 15:01 2024/8/1
|
* @date 15:01 2024/8/1
|
||||||
**/
|
**/
|
||||||
IPage<CustomerMainRespVO> selectListPage(@Param("entity") CustomerMainPageReqVO pageReqVO, Page<CustomerMainRespVO> page);
|
IPage<CustomerMainRespVO> selectListPage(@Param("entity") CustomerMainPageReqVO pageReqVO, Page<CustomerMainRespVO> page);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
@ -69,5 +69,4 @@ public interface CustomerMainService extends IService<CustomerMain> {
|
|||||||
* @date 18:42 2024/8/3
|
* @date 18:42 2024/8/3
|
||||||
**/
|
**/
|
||||||
void bindCustomAndCar(CustomerMainSaveReqVO saveReqVO);
|
void bindCustomAndCar(CustomerMainSaveReqVO saveReqVO);
|
||||||
|
|
||||||
}
|
}
|
@ -14,10 +14,7 @@ import cn.iocoder.yudao.module.custom.mapper.CustomerMainMapper;
|
|||||||
import cn.iocoder.yudao.module.custom.service.CustomerCarService;
|
import cn.iocoder.yudao.module.custom.service.CustomerCarService;
|
||||||
import cn.iocoder.yudao.module.custom.service.CustomerItemService;
|
import cn.iocoder.yudao.module.custom.service.CustomerItemService;
|
||||||
import cn.iocoder.yudao.module.custom.service.CustomerMainService;
|
import cn.iocoder.yudao.module.custom.service.CustomerMainService;
|
||||||
import cn.iocoder.yudao.module.custom.vo.CarMainRespVO;
|
import cn.iocoder.yudao.module.custom.vo.*;
|
||||||
import cn.iocoder.yudao.module.custom.vo.CustomerMainPageReqVO;
|
|
||||||
import cn.iocoder.yudao.module.custom.vo.CustomerMainRespVO;
|
|
||||||
import cn.iocoder.yudao.module.custom.vo.CustomerMainSaveReqVO;
|
|
||||||
import cn.iocoder.yudao.module.label.entity.BusiLabel;
|
import cn.iocoder.yudao.module.label.entity.BusiLabel;
|
||||||
import cn.iocoder.yudao.module.label.service.BusiLabelService;
|
import cn.iocoder.yudao.module.label.service.BusiLabelService;
|
||||||
import cn.iocoder.yudao.module.system.api.dept.DeptApi;
|
import cn.iocoder.yudao.module.system.api.dept.DeptApi;
|
||||||
|
@ -59,8 +59,7 @@
|
|||||||
ORDER BY main.create_time DESC
|
ORDER BY main.create_time DESC
|
||||||
</select>
|
</select>
|
||||||
<select id="getAttn" resultType="cn.iocoder.yudao.module.custom.entity.CustomerMain">
|
<select id="getAttn" resultType="cn.iocoder.yudao.module.custom.entity.CustomerMain">
|
||||||
SELECT
|
SELECT main.id AS id,
|
||||||
main.id AS id,
|
|
||||||
main.user_id AS userId,
|
main.user_id AS userId,
|
||||||
main.type_code AS typeCode,
|
main.type_code AS typeCode,
|
||||||
main.dept_code AS deptCode,
|
main.dept_code AS deptCode,
|
||||||
@ -77,9 +76,10 @@
|
|||||||
main.inviter AS inviter,
|
main.inviter AS inviter,
|
||||||
main.inviter_type AS inviterType,
|
main.inviter_type AS inviterType,
|
||||||
main.status AS status
|
main.status AS status
|
||||||
FROM
|
FROM base_customer_main main
|
||||||
base_customer_main main
|
where main.dept_code = #{deptCode}
|
||||||
where main.dept_code = #{deptCode} and main.deleted = 0 and main.type_code = '04'
|
and main.deleted = 0
|
||||||
|
and main.type_code = '04'
|
||||||
ORDER BY main.create_time DESC
|
ORDER BY main.create_time DESC
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
@ -20,61 +20,5 @@ public class DlRepairTicketsController {
|
|||||||
*/
|
*/
|
||||||
@Resource
|
@Resource
|
||||||
private DlRepairTicketsService dlRepairTicketsService;
|
private DlRepairTicketsService dlRepairTicketsService;
|
||||||
|
|
||||||
// /**
|
|
||||||
// * 分页查询所有数据
|
|
||||||
// *
|
|
||||||
// * @param page 分页对象
|
|
||||||
// * @param dlRepairTickets 查询实体
|
|
||||||
// * @return 所有数据
|
|
||||||
// */
|
|
||||||
// @GetMapping
|
|
||||||
// public R selectAll(Page<DlRepairTickets> page, DlRepairTickets dlRepairTickets) {
|
|
||||||
// return success(this.dlRepairTicketsService.page(page, new QueryWrapper<>(dlRepairTickets)));
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * 通过主键查询单条数据
|
|
||||||
// *
|
|
||||||
// * @param id 主键
|
|
||||||
// * @return 单条数据
|
|
||||||
// */
|
|
||||||
// @GetMapping("{id}")
|
|
||||||
// public R selectOne(@PathVariable Serializable id) {
|
|
||||||
// return success(this.dlRepairTicketsService.getById(id));
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * 新增数据
|
|
||||||
// *
|
|
||||||
// * @param dlRepairTickets 实体对象
|
|
||||||
// * @return 新增结果
|
|
||||||
// */
|
|
||||||
// @PostMapping
|
|
||||||
// public R insert(@RequestBody DlRepairTickets dlRepairTickets) {
|
|
||||||
// return success(this.dlRepairTicketsService.save(dlRepairTickets));
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * 修改数据
|
|
||||||
// *
|
|
||||||
// * @param dlRepairTickets 实体对象
|
|
||||||
// * @return 修改结果
|
|
||||||
// */
|
|
||||||
// @PutMapping
|
|
||||||
// public R update(@RequestBody DlRepairTickets dlRepairTickets) {
|
|
||||||
// return success(this.dlRepairTicketsService.updateById(dlRepairTickets));
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * 删除数据
|
|
||||||
// *
|
|
||||||
// * @param idList 主键结合
|
|
||||||
// * @return 删除结果
|
|
||||||
// */
|
|
||||||
// @DeleteMapping
|
|
||||||
// public R delete(@RequestParam("idList") List<Long> idList) {
|
|
||||||
// return success(this.dlRepairTicketsService.removeByIds(idList));
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user