|
|
|
@ -8,10 +8,11 @@
|
|
|
|
|
<result column="code" jdbcType="VARCHAR" property="code" />
|
|
|
|
|
<result column="userId" jdbcType="BIGINT" property="userid" />
|
|
|
|
|
<result column="userName" jdbcType="VARCHAR" property="username" />
|
|
|
|
|
<result column="isDirector" javaType="boolean" property="isDirector" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
<sql id="Base_Column_List">
|
|
|
|
|
<!--@mbg.generated-->
|
|
|
|
|
id, code, userId, userName
|
|
|
|
|
id, code, userId, userName, isDirector
|
|
|
|
|
</sql>
|
|
|
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
|
|
|
|
<!--@mbg.generated-->
|
|
|
|
@ -27,9 +28,9 @@
|
|
|
|
|
</delete>
|
|
|
|
|
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.glxp.sale.admin.entity.inout.WarehouseUserEntity" useGeneratedKeys="true">
|
|
|
|
|
<!--@mbg.generated-->
|
|
|
|
|
insert into inv_warehouse_user (code, userId, userName
|
|
|
|
|
insert into inv_warehouse_user (code, userId, userName, isDirector
|
|
|
|
|
)
|
|
|
|
|
values (#{code,jdbcType=VARCHAR}, #{userid,jdbcType=BIGINT}, #{username,jdbcType=VARCHAR}
|
|
|
|
|
values (#{code,jdbcType=VARCHAR}, #{userid,jdbcType=BIGINT}, #{username,jdbcType=VARCHAR}, #{isDirector}
|
|
|
|
|
)
|
|
|
|
|
</insert>
|
|
|
|
|
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.glxp.sale.admin.entity.inout.WarehouseUserEntity" useGeneratedKeys="true">
|
|
|
|
@ -45,6 +46,7 @@
|
|
|
|
|
<if test="username != null">
|
|
|
|
|
userName,
|
|
|
|
|
</if>
|
|
|
|
|
isDirector
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="code != null">
|
|
|
|
@ -56,6 +58,7 @@
|
|
|
|
|
<if test="username != null">
|
|
|
|
|
#{username,jdbcType=VARCHAR},
|
|
|
|
|
</if>
|
|
|
|
|
#{isDirector}
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.sale.admin.entity.inout.WarehouseUserEntity">
|
|
|
|
@ -72,6 +75,7 @@
|
|
|
|
|
userName = #{username,jdbcType=VARCHAR},
|
|
|
|
|
</if>
|
|
|
|
|
</set>
|
|
|
|
|
isDirector = #{isDirector}
|
|
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
|
|
</update>
|
|
|
|
|
<update id="updateByPrimaryKey" parameterType="com.glxp.sale.admin.entity.inout.WarehouseUserEntity">
|
|
|
|
@ -80,6 +84,7 @@
|
|
|
|
|
set code = #{code,jdbcType=VARCHAR},
|
|
|
|
|
userId = #{userid,jdbcType=BIGINT},
|
|
|
|
|
userName = #{username,jdbcType=VARCHAR}
|
|
|
|
|
isDirector = #{isDirector}
|
|
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
|
|
</update>
|
|
|
|
|
<update id="updateBatch" parameterType="java.util.List">
|
|
|
|
@ -141,10 +146,10 @@
|
|
|
|
|
<insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map" useGeneratedKeys="true">
|
|
|
|
|
<!--@mbg.generated-->
|
|
|
|
|
insert into inv_warehouse_user
|
|
|
|
|
(code, userId, userName)
|
|
|
|
|
(code, userId, userName, isDirector)
|
|
|
|
|
values
|
|
|
|
|
<foreach collection="list" item="item" separator=",">
|
|
|
|
|
(#{item.code,jdbcType=VARCHAR}, #{item.userid,jdbcType=BIGINT}, #{item.username,jdbcType=VARCHAR}
|
|
|
|
|
(#{item.code,jdbcType=VARCHAR}, #{item.userid,jdbcType=BIGINT}, #{item.username,jdbcType=VARCHAR}, #{item.isDirector}
|
|
|
|
|
)
|
|
|
|
|
</foreach>
|
|
|
|
|
</insert>
|
|
|
|
@ -158,6 +163,7 @@
|
|
|
|
|
code,
|
|
|
|
|
userId,
|
|
|
|
|
userName,
|
|
|
|
|
isDirector,
|
|
|
|
|
</trim>
|
|
|
|
|
values
|
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
@ -167,6 +173,7 @@
|
|
|
|
|
#{code,jdbcType=VARCHAR},
|
|
|
|
|
#{userid,jdbcType=BIGINT},
|
|
|
|
|
#{username,jdbcType=VARCHAR},
|
|
|
|
|
#{isDirector}
|
|
|
|
|
</trim>
|
|
|
|
|
on duplicate key update
|
|
|
|
|
<trim suffixOverrides=",">
|
|
|
|
@ -227,7 +234,19 @@
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<select id="selectWarehouseUserListByCode" resultMap="BaseResultMap">
|
|
|
|
|
<select id="selectListByCode" resultMap="BaseResultMap">
|
|
|
|
|
select * from inv_warehouse_user where code = #{code}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<delete id="deleteByCode">
|
|
|
|
|
delete from inv_warehouse_user where code = #{code}
|
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
<update id="updateDirector">
|
|
|
|
|
update inv_warehouse_user set isDirector = #{isDirector} where code = #{code}
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
<update id="updateDirectorById">
|
|
|
|
|
update inv_warehouse_user set isDirector = #{isDirector} where id = #{id}
|
|
|
|
|
</update>
|
|
|
|
|
</mapper>
|