From 931e45f5f78494c7af4cab75053da49b57f22fbe Mon Sep 17 00:00:00 2001 From: rk <94314517@qq.com> Date: 星期一, 13 十月 2025 14:31:43 +0800 Subject: [PATCH] 定时自动叫号 与 WMS获取车辆是否在园接口开发 --- server/system_service/src/main/java/com/doumee/dao/system/SystemUserMapper.java | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/server/system_service/src/main/java/com/doumee/dao/system/SystemUserMapper.java b/server/system_service/src/main/java/com/doumee/dao/system/SystemUserMapper.java index f0ba404..6a251bc 100644 --- a/server/system_service/src/main/java/com/doumee/dao/system/SystemUserMapper.java +++ b/server/system_service/src/main/java/com/doumee/dao/system/SystemUserMapper.java @@ -8,6 +8,7 @@ import com.doumee.dao.system.model.SystemUser; import com.doumee.dao.system.vo.SystemUserListVO; import com.doumee.dao.system.vo.UserResponse; +import com.github.yulichang.base.MPJBaseMapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; @@ -16,7 +17,7 @@ /** * @author T14 */ -public interface SystemUserMapper extends BaseMapper<SystemUser> { +public interface SystemUserMapper extends MPJBaseMapper<SystemUser> { /** * 鏌ヨ鐢ㄦ埛鍒楄〃 @@ -26,14 +27,14 @@ List<SystemUserListVO> selectManageList(@Param("dto") QuerySystemUserDTO dto, @Param("orderByClause") String orderByClause); - void insertBatchSomeColumn(List<SystemUser> userList); @Select(" select c.id , c.type , c.REALNAME as realName , c.userName as userName , c.avatar ," + " c.wechat_name as wechatName , c.mobile , c.sex , c.birthday , c.avatar , d.COMPANY_NAME_PATH as departmentName " + " from system_user c " + - " INNER JOIN company d on c.COMPANY_ID = d.id " + + " INNER JOIN company d on c.COMPANY_ID = d.id " + + " LEFT JOIN member m on c.member_id = m.id " + " ${ew.customSqlSegment} ") IPage<UserResponse> getUserPage(IPage<UserResponse> page, @Param(Constants.WRAPPER) Wrapper wrapper); -- Gitblit v1.9.3