|
|
@ -101,7 +101,7 @@
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</set>
|
|
|
|
</set>
|
|
|
|
isDirector = #{isDirector}
|
|
|
|
isDirector = #{isDirector}
|
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|
<update id="updateByPrimaryKey" parameterType="com.glxp.api.entity.auth.WarehouseUserEntity">
|
|
|
|
<update id="updateByPrimaryKey" parameterType="com.glxp.api.entity.auth.WarehouseUserEntity">
|
|
|
|
<!--@mbg.generated-->
|
|
|
|
<!--@mbg.generated-->
|
|
|
@ -167,16 +167,6 @@
|
|
|
|
#{item.id,jdbcType=INTEGER}
|
|
|
|
#{item.id,jdbcType=INTEGER}
|
|
|
|
</foreach>
|
|
|
|
</foreach>
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|
<insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map" useGeneratedKeys="true">
|
|
|
|
|
|
|
|
<!--@mbg.generated-->
|
|
|
|
|
|
|
|
insert into auth_warehouse_user
|
|
|
|
|
|
|
|
(code, userId, userName, isDirector)
|
|
|
|
|
|
|
|
values
|
|
|
|
|
|
|
|
<foreach collection="list" item="item" separator=",">
|
|
|
|
|
|
|
|
(#{item.code,jdbcType=VARCHAR}, #{item.userid,jdbcType=BIGINT}, #{item.username,jdbcType=VARCHAR},
|
|
|
|
|
|
|
|
#{item.isDirector})
|
|
|
|
|
|
|
|
</foreach>
|
|
|
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
<insert id="insertOrUpdateEntity" keyColumn="id" keyProperty="id"
|
|
|
|
<insert id="insertOrUpdateEntity" keyColumn="id" keyProperty="id"
|
|
|
|
parameterType="com.glxp.api.entity.auth.WarehouseUserEntity" useGeneratedKeys="true">
|
|
|
|
parameterType="com.glxp.api.entity.auth.WarehouseUserEntity" useGeneratedKeys="true">
|
|
|
|
<!--@mbg.generated-->
|
|
|
|
<!--@mbg.generated-->
|
|
|
@ -205,9 +195,9 @@
|
|
|
|
<if test="id != null">
|
|
|
|
<if test="id != null">
|
|
|
|
id = #{id,jdbcType=INTEGER},
|
|
|
|
id = #{id,jdbcType=INTEGER},
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
code = #{code,jdbcType=VARCHAR},
|
|
|
|
code = #{code,jdbcType=VARCHAR},
|
|
|
|
userId = #{userid,jdbcType=BIGINT},
|
|
|
|
userId = #{userid,jdbcType=BIGINT},
|
|
|
|
userName = #{username,jdbcType=VARCHAR},
|
|
|
|
userName = #{username,jdbcType=VARCHAR},
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
<insert id="insertOrUpdateSelective" keyColumn="id" keyProperty="id"
|
|
|
|
<insert id="insertOrUpdateSelective" keyColumn="id" keyProperty="id"
|
|
|
@ -263,7 +253,7 @@
|
|
|
|
<select id="selectListByCode" resultMap="BaseResultMap">
|
|
|
|
<select id="selectListByCode" resultMap="BaseResultMap">
|
|
|
|
select auth_warehouse_user.*, auth_user.employeeName
|
|
|
|
select auth_warehouse_user.*, auth_user.employeeName
|
|
|
|
from auth_warehouse_user
|
|
|
|
from auth_warehouse_user
|
|
|
|
inner join auth_user on auth_user.id = auth_warehouse_user.userId
|
|
|
|
inner join auth_user on auth_user.id = auth_warehouse_user.userId
|
|
|
|
where code = #{code}
|
|
|
|
where code = #{code}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
@ -271,7 +261,7 @@
|
|
|
|
parameterType="com.glxp.api.req.auth.FilterInvLinkDataRequest">
|
|
|
|
parameterType="com.glxp.api.req.auth.FilterInvLinkDataRequest">
|
|
|
|
select auth_warehouse_user.*, auth_user.employeeName
|
|
|
|
select auth_warehouse_user.*, auth_user.employeeName
|
|
|
|
from auth_warehouse_user
|
|
|
|
from auth_warehouse_user
|
|
|
|
inner join auth_user on auth_user.id = auth_warehouse_user.userId
|
|
|
|
inner join auth_user on auth_user.id = auth_warehouse_user.userId
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
<if test="code != '' and code != null">
|
|
|
|
<if test="code != '' and code != null">
|
|
|
|
AND code = #{code}
|
|
|
|
AND code = #{code}
|
|
|
|