|
|
|
<?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">
|
|
|
|
<mapper namespace="com.op.sap.mapper.SapProRouteMapper">
|
|
|
|
|
|
|
|
<resultMap type="com.op.system.api.domain.sap.SapProRoute" id="ProRouteResult">
|
|
|
|
<result property="routeId" column="route_id" />
|
|
|
|
<result property="routeCode" column="route_code" />
|
|
|
|
<result property="routeName" column="route_name" />
|
|
|
|
<result property="routeDesc" column="route_desc" />
|
|
|
|
<result property="enableFlag" column="enable_flag" />
|
|
|
|
<result property="remark" column="remark" />
|
|
|
|
<result property="attr1" column="attr1" />
|
|
|
|
<result property="attr2" column="attr2" />
|
|
|
|
<result property="attr3" column="attr3" />
|
|
|
|
<result property="attr4" column="attr4" />
|
|
|
|
<result property="createBy" column="create_by" />
|
|
|
|
<result property="createTime" column="create_time" />
|
|
|
|
<result property="updateBy" column="update_by" />
|
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
|
<result property="routeVersion" column="route_version" />
|
|
|
|
<result property="needCheck" column="need_check" />
|
|
|
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
<sql id="selectProRouteVo">
|
|
|
|
select route_id, route_code, route_name, route_desc, enable_flag, remark,
|
|
|
|
attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time,
|
|
|
|
route_version,need_check
|
|
|
|
from pro_route
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
<select id="selectProRouteList" parameterType="com.op.system.api.domain.sap.SapProRoute" resultMap="ProRouteResult">
|
|
|
|
<include refid="selectProRouteVo"/>
|
|
|
|
<where>
|
|
|
|
<if test="routeCode != null and routeCode != ''"> and route_code = #{routeCode}</if>
|
|
|
|
<if test="routeName != null and routeName != ''"> and route_name like concat('%', #{routeName}, '%')</if>
|
|
|
|
<if test="routeDesc != null and routeDesc != ''"> and route_desc = #{routeDesc}</if>
|
|
|
|
<if test="enableFlag != null and enableFlag != ''"> and enable_flag = #{enableFlag}</if>
|
|
|
|
</where>
|
|
|
|
order by create_time desc
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select id="selectProRouteByRouteId" parameterType="String" resultMap="ProRouteResult">
|
|
|
|
<include refid="selectProRouteVo"/>
|
|
|
|
where route_id = #{routeId}
|
|
|
|
</select>
|
|
|
|
<select id="selectProRouteByRouteCode" parameterType="String" resultMap="ProRouteResult">
|
|
|
|
select top 1 route_id, route_code, route_name, route_desc, enable_flag, remark,
|
|
|
|
attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time,
|
|
|
|
route_version,need_check
|
|
|
|
from pro_route
|
|
|
|
where route_code = #{routeCode}
|
|
|
|
order by route_version desc
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select id="getRouteByProductId" parameterType="String" resultMap="ProRouteResult">
|
|
|
|
select r.*
|
|
|
|
from pro_route r
|
|
|
|
left join pro_route_product p
|
|
|
|
on p.route_id = r.route_id
|
|
|
|
where r.enable_flag = 'Y'
|
|
|
|
and p.item_id = #{itemId}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select id="checkRouteCodeUnique" parameterType="com.op.system.api.domain.sap.SapProRoute" resultMap="ProRouteResult">
|
|
|
|
select top 1 route_id, route_code, route_name, route_desc,
|
|
|
|
enable_flag, remark, attr1, attr2, attr3, attr4,
|
|
|
|
create_by, create_time, update_by, update_time,need_check
|
|
|
|
from pro_route
|
|
|
|
where route_code = #{routeCode}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select id="selectAllRoute" resultMap="ProRouteResult">
|
|
|
|
select route_code, route_name
|
|
|
|
from pro_route
|
|
|
|
where enable_flag = 'Y'
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<insert id="insertProRoute" parameterType="com.op.system.api.domain.sap.SapProRoute" useGeneratedKeys="true" keyProperty="routeId">
|
|
|
|
insert into pro_route
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="routeId != null and routeId != ''">route_id,</if>
|
|
|
|
<if test="routeCode != null and routeCode != ''">route_code,</if>
|
|
|
|
<if test="routeName != null and routeName != ''">route_name,</if>
|
|
|
|
<if test="routeDesc != null">route_desc,</if>
|
|
|
|
<if test="enableFlag != null and enableFlag != ''">enable_flag,</if>
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
<if test="attr1 != null">attr1,</if>
|
|
|
|
<if test="attr2 != null">attr2,</if>
|
|
|
|
<if test="attr3 != null">attr3,</if>
|
|
|
|
<if test="attr4 != null">attr4,</if>
|
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
|
|
<if test="updateTime != null">update_time,</if>
|
|
|
|
<if test="routeVersion != null">route_version,</if>
|
|
|
|
<if test="needCheck != null">need_check,</if>
|
|
|
|
<if test="tecMan != null">tec_man,</if>
|
|
|
|
<if test="tecManUnit != null">tec_man_unit,</if>
|
|
|
|
<if test="tecMachine != null">tec_machine,</if>
|
|
|
|
<if test="tecMachineUnit != null">tec_machine_unit,</if>
|
|
|
|
<if test="tecDepreciation != null">tec_depreciation,</if>
|
|
|
|
<if test="tecDepreciationUnit != null">tec_depreciation_unit,</if>
|
|
|
|
<if test="tecOther != null">tec_other,</if>
|
|
|
|
<if test="tecOtherUnit != null">tec_ohter_unit,</if>
|
|
|
|
|
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="routeId != null and routeId != ''">#{routeId},</if>
|
|
|
|
<if test="routeCode != null and routeCode != ''">#{routeCode},</if>
|
|
|
|
<if test="routeName != null and routeName != ''">#{routeName},</if>
|
|
|
|
<if test="routeDesc != null">#{routeDesc},</if>
|
|
|
|
<if test="enableFlag != null and enableFlag != ''">#{enableFlag},</if>
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
<if test="attr1 != null">#{attr1},</if>
|
|
|
|
<if test="attr2 != null">#{attr2},</if>
|
|
|
|
<if test="attr3 != null">#{attr3},</if>
|
|
|
|
<if test="attr4 != null">#{attr4},</if>
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
|
|
<if test="routeVersion != null">#{routeVersion},</if>
|
|
|
|
<if test="needCheck != null">#{needCheck},</if>
|
|
|
|
<if test="tecMan != null">#{tecMan},</if>
|
|
|
|
<if test="tecManUnit != null">#{tecManUnit},</if>
|
|
|
|
<if test="tecMachine != null">#{tecMachine},</if>
|
|
|
|
<if test="tecMachineUnit != null">#{tecMachineUnit},</if>
|
|
|
|
<if test="tecDepreciation != null">#{tecDepreciation},</if>
|
|
|
|
<if test="tecDepreciationUnit != null">#{tecDepreciationUnit},</if>
|
|
|
|
<if test="tecOther != null">#{tecOther},</if>
|
|
|
|
<if test="tecOtherUnit != null">#{tecOtherUnit},</if>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
<update id="updateProRoute" parameterType="com.op.system.api.domain.sap.SapProRoute">
|
|
|
|
update pro_route
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
|
<if test="routeCode != null and routeCode != ''">route_code = #{routeCode},</if>
|
|
|
|
<if test="routeName != null and routeName != ''">route_name = #{routeName},</if>
|
|
|
|
<if test="routeDesc != null">route_desc = #{routeDesc},</if>
|
|
|
|
<if test="enableFlag != null and enableFlag != ''">enable_flag = #{enableFlag},</if>
|
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
|
<if test="tecMan != null">tec_man = #{tecMan},</if>
|
|
|
|
<if test="tecManUnit != null">tec_man_unit = #{tecManUnit},</if>
|
|
|
|
<if test="tecMachine != null">tec_machine = #{tecMachine},</if>
|
|
|
|
<if test="tecMachineUnit != null">tec_machine_unit = #{tecMachineUnit},</if>
|
|
|
|
<if test="tecDepreciation != null">tec_depreciation = #{tecDepreciation},</if>
|
|
|
|
<if test="tecDepreciationUnit != null">tec_depreciation_unit = #{tecDepreciationUnit},</if>
|
|
|
|
<if test="tecOther != null">tec_other = #{tecOther},</if>
|
|
|
|
<if test="tecOtherUnit != null">tec_ohter_unit = #{tecOtherUnit},</if>
|
|
|
|
<if test="attr1 != null">attr1 = #{attr1},</if>
|
|
|
|
<if test="attr2 != null">attr2 = #{attr2},</if>
|
|
|
|
<if test="attr3 != null">attr3 = #{attr3},</if>
|
|
|
|
<if test="attr4 != null">attr4 = #{attr4},</if>
|
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
|
<if test="routeVersion != null">route_version = #{routeVersion},</if>
|
|
|
|
<if test="needCheck != null">#{needCheck},</if>
|
|
|
|
</trim>
|
|
|
|
where route_id = #{routeId}
|
|
|
|
</update>
|
|
|
|
|
|
|
|
<delete id="deleteProRouteByRouteId" parameterType="String">
|
|
|
|
delete from pro_route where route_id = #{routeId}
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
<delete id="deleteProRouteByRouteIds" parameterType="String">
|
|
|
|
delete from pro_route where route_id in
|
|
|
|
<foreach item="routeId" collection="array" open="(" separator="," close=")">
|
|
|
|
#{routeId}
|
|
|
|
</foreach>
|
|
|
|
</delete>
|
|
|
|
</mapper>
|