|
|
|
@ -1,9 +1,9 @@
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
|
<!DOCTYPE mapper
|
|
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
|
<mapper namespace="com.op.wms.mapper.BaseAreaMapper">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<resultMap type="BaseArea" id="BaseAreaResult">
|
|
|
|
|
<result property="areaId" column="area_id" />
|
|
|
|
|
<result property="areaCode" column="area_code" />
|
|
|
|
@ -44,11 +44,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
|
|
|
|
<select id="selectBaseAreaList" parameterType="BaseArea" resultMap="BaseAreaResult">
|
|
|
|
|
<include refid="selectBaseAreaVo"/>
|
|
|
|
|
<where>
|
|
|
|
|
<if test="areaCode != null and areaCode != ''"> and area_code = #{areaCode}</if>
|
|
|
|
|
<if test="areaDesc != null and areaDesc != ''"> and area_desc = #{areaDesc}</if>
|
|
|
|
|
<where>
|
|
|
|
|
<if test="areaCode != null and areaCode != ''"> and area_code like concat('%', #{areaCode}, '%')</if>
|
|
|
|
|
<if test="areaDesc != null and areaDesc != ''"> and area_desc like concat('%', #{areaDesc}, '%')</if>
|
|
|
|
|
<if test="regionCode != null and regionCode != ''"> and region_code = #{regionCode}</if>
|
|
|
|
|
<if test="whCode != null and whCode != ''"> and wh_code = #{whCode}</if>
|
|
|
|
|
<if test="whCode != null and whCode != ''"> and wh_code like concat('%', #{whCode}, '%')</if>
|
|
|
|
|
<if test="instockTranLoc != null and instockTranLoc != ''"> and instock_tran_loc = #{instockTranLoc}</if>
|
|
|
|
|
<if test="outstockTranLoc != null and outstockTranLoc != ''"> and outstock_tran_loc = #{outstockTranLoc}</if>
|
|
|
|
|
<if test="pickTranLoc != null and pickTranLoc != ''"> and pick_tran_loc = #{pickTranLoc}</if>
|
|
|
|
@ -72,16 +72,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectBaseAreaByAreaId" parameterType="String" resultMap="BaseAreaResult">
|
|
|
|
|
<include refid="selectBaseAreaVo"/>
|
|
|
|
|
where area_id = #{areaId}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<insert id="insertBaseArea" parameterType="BaseArea">
|
|
|
|
|
insert into base_area
|
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
<!-- <if test="areaId != null">area_id,</if>-->
|
|
|
|
|
<!-- <if test="areaId != null">area_id,</if>-->
|
|
|
|
|
<if test="areaCode != null and areaCode != ''">area_code,</if>
|
|
|
|
|
<if test="areaDesc != null">area_desc,</if>
|
|
|
|
|
<if test="regionCode != null">region_code,</if>
|
|
|
|
@ -112,9 +112,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="activeFlag != null">active_flag,</if>
|
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
|
<if test="factoryCode != null">factory_code,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<!-- <if test="areaId != null">#{areaId},</if>-->
|
|
|
|
|
<!-- <if test="areaId != null">#{areaId},</if>-->
|
|
|
|
|
<if test="areaCode != null and areaCode != ''">#{areaCode},</if>
|
|
|
|
|
<if test="areaDesc != null">#{areaDesc},</if>
|
|
|
|
|
<if test="regionCode != null">#{regionCode},</if>
|
|
|
|
@ -145,7 +145,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="activeFlag != null">#{activeFlag},</if>
|
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
|
<if test="factoryCode != null">#{factoryCode},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<update id="updateBaseArea" parameterType="BaseArea">
|
|
|
|
@ -190,15 +190,28 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
<delete id="deleteBaseAreaByAreaIds" parameterType="String">
|
|
|
|
|
delete from base_area where area_id in
|
|
|
|
|
delete from base_area where area_id in
|
|
|
|
|
<foreach item="areaId" collection="array" open="(" separator="," close=")">
|
|
|
|
|
#{areaId}
|
|
|
|
|
</foreach>
|
|
|
|
|
</delete>
|
|
|
|
|
<!--查询总数-->
|
|
|
|
|
<!--查询总数-->
|
|
|
|
|
<select id="queryCount" parameterType="BaseArea" resultType="java.lang.Integer">
|
|
|
|
|
select count(*)
|
|
|
|
|
from base_area
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="checkAreaCodeUnique" parameterType="BaseArea" resultType ="java.lang.String">
|
|
|
|
|
select area_code
|
|
|
|
|
from base_area
|
|
|
|
|
where area_code = #{areaCode}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="checkAreaDescUnique" parameterType="BaseArea" resultType ="java.lang.String">
|
|
|
|
|
select area_desc
|
|
|
|
|
from base_area
|
|
|
|
|
where area_desc = #{areaDesc}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
</mapper>
|