...
|
...
|
@@ -32,6 +32,21 @@ |
|
|
<result column="age" property="age" jdbcType="INTEGER" />
|
|
|
<result column="company_id" property="companyId" jdbcType="INTEGER" />
|
|
|
</resultMap>
|
|
|
<resultMap id="WithRoleResultMap" type="com.tianbo.warehouse.model.USERS" extends="BaseResultMap">
|
|
|
<collection property="roles" javaType="java.util.ArrayList" ofType="com.tianbo.warehouse.model.ROLE">
|
|
|
<result column="role_id" jdbcType="INTEGER" property="roleId" />
|
|
|
<result column="role_name" jdbcType="VARCHAR" property="roleName" />
|
|
|
<result column="role_sign" jdbcType="VARCHAR" property="roleSign" />
|
|
|
<result column="rdescription" jdbcType="VARCHAR" property="description" />
|
|
|
<result column="type" jdbcType="VARCHAR" property="type" />
|
|
|
<result column="parentId" jdbcType="INTEGER" property="parentid" />
|
|
|
<result column="rsort" jdbcType="INTEGER" property="rsort" />
|
|
|
<result column="customs_reg_code" jdbcType="VARCHAR" property="customsRegCode" />
|
|
|
<result column="business_license" jdbcType="VARCHAR" property="businessLicense" />
|
|
|
<result column="departmentId" jdbcType="VARCHAR" property="departmentid" />
|
|
|
<result column="mq_code" jdbcType="VARCHAR" property="mqcode" />
|
|
|
</collection>
|
|
|
</resultMap>
|
|
|
<resultMap id="WithRoleAndPermResultMap" type="com.tianbo.warehouse.model.USERS" extends="BaseResultMap">
|
|
|
<collection property="roles" javaType="java.util.ArrayList" ofType="com.tianbo.warehouse.model.ROLE">
|
|
|
<result column="role_id" jdbcType="INTEGER" property="roleId" />
|
...
|
...
|
@@ -101,18 +116,41 @@ |
|
|
left join role_permission rp on r.role_id = rp.role_id
|
|
|
left join permission p on rp.permission_id = p.permission_id
|
|
|
</select>
|
|
|
<select id="selectAllUser" resultMap="BaseResultMap" parameterType="com.tianbo.warehouse.model.USERS" >
|
|
|
select
|
|
|
<!-- <include refid="Base_Column_List" />-->
|
|
|
user_id, username, birthday, sex, address, state, mobilePhone, creatTime,
|
|
|
updateTime, userFace, realName, email, age,company_id
|
|
|
from users
|
|
|
WHERE 1=1
|
|
|
<if test=" username != null" >
|
|
|
and username = #{username,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="realname != null" >
|
|
|
and realName = #{realname,jdbcType=VARCHAR}
|
|
|
<select id="selectAllUser" resultMap="WithRoleResultMap" parameterType="com.tianbo.warehouse.model.USERS" >
|
|
|
SELECT
|
|
|
u.user_id,
|
|
|
username,
|
|
|
birthday,
|
|
|
sex,
|
|
|
address,
|
|
|
state,
|
|
|
mobilePhone,
|
|
|
creatTime,
|
|
|
updateTime,
|
|
|
userFace,
|
|
|
realName,
|
|
|
email,
|
|
|
age,
|
|
|
company_id,
|
|
|
r.role_id,role_name,role_sign,r.description AS rdescription,`type`,parentId,rsort,customs_reg_code,business_license,departmentId,mq_code
|
|
|
FROM
|
|
|
(
|
|
|
SELECT
|
|
|
user_id,username,birthday,sex,address,state,mobilePhone,creatTime,updateTime,userFace,realName,email,age,company_id
|
|
|
FROM users
|
|
|
<where>
|
|
|
<if test=" username != null and username != ''" >
|
|
|
and username = #{username,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="realname != null and realname != ''" >
|
|
|
and realName = #{realname,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
</where>
|
|
|
) u
|
|
|
LEFT JOIN user_role ur ON u.user_id = ur.user_id
|
|
|
LEFT JOIN role r ON ur.role_id = r.role_id
|
|
|
<if test=" companyId != null and companyId != ''" >
|
|
|
WHERE r.role_id = #{companyId,jdbcType=INTEGER}
|
|
|
</if>
|
|
|
</select>
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
...
|
...
|
|