gao.qiang hace 1 año
padre
commit
0549c7194e

+ 2 - 1
base-common/src/main/java/com/ozs/common/core/domain/vo/SysUserVo.java

@@ -5,6 +5,7 @@ import com.ozs.common.vo.PageVo;
 import lombok.Data;
 
 import java.io.Serializable;
+import java.util.List;
 
 /**
  * 用户对象 sys_user
@@ -41,5 +42,5 @@ public class SysUserVo extends PageVo implements Serializable {
      */
     private Integer status;
 
-   
+    private List<Long> ids;   
 }

+ 6 - 0
base-system/src/main/resources/mapper/system/SysUserMapper.xml

@@ -285,6 +285,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 			<if test="status != null and status != 0">
 				and u.status=#{status}
 			</if>
+			<if test="ids != null">
+			    and u.id in
+				<foreach item="items" collection="ids" separator="," open="(" close=")" index="">
+					#{items}
+				</foreach>
+			</if>
 			<if test="!dsFlay">
 				and
 				<trim prefix="(" prefixOverrides="or" suffix=")">