| | |
| | | <result property="spareField2" column="spare_field_2" /> |
| | | <result property="spareField3" column="spare_field_3" /> |
| | | <result property="spareField4" column="spare_field_4" /> |
| | | <result property="routeId" column="route_id" /> |
| | | |
| | | </resultMap> |
| | | |
| | | <sql id="selectBsTechnologyRouteChildInfoVo"> |
| | | select id, processes_code, processes_name, step_no, next_process, next_process_bond, key_processes_flag, preparation_time, wait_time, create_user, create_time, update_user, update_time, remark, route_code, spare_field_1, spare_field_2, spare_field_3, spare_field_4 from bs_technology_route_child_info |
| | | select route_id, id, processes_code, processes_name, step_no, next_process, next_process_bond, key_processes_flag, preparation_time, wait_time, create_user, create_time, update_user, update_time, remark, route_code, spare_field_1, spare_field_2, spare_field_3, spare_field_4 from bs_technology_route_child_info |
| | | </sql> |
| | | |
| | | <select id="selectBsTechnologyRouteChildInfoList" parameterType="BsTechnologyRouteChildInfo" resultMap="BsTechnologyRouteChildInfoResult"> |
| | |
| | | <if test="spareField2 != null">spare_field_2,</if> |
| | | <if test="spareField3 != null">spare_field_3,</if> |
| | | <if test="spareField4 != null">spare_field_4,</if> |
| | | </trim> |
| | | <if test="routeId != null">route_id,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">#{id},</if> |
| | | <if test="processesCode != null and processesCode != ''">#{processesCode},</if> |
| | |
| | | <if test="spareField2 != null">#{spareField2},</if> |
| | | <if test="spareField3 != null">#{spareField3},</if> |
| | | <if test="spareField4 != null">#{spareField4},</if> |
| | | </trim> |
| | | <if test="routeId != null">#{routeId},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateBsTechnologyRouteChildInfo" parameterType="BsTechnologyRouteChildInfo"> |
| | |
| | | <if test="spareField2 != null">spare_field_2 = #{spareField2},</if> |
| | | <if test="spareField3 != null">spare_field_3 = #{spareField3},</if> |
| | | <if test="spareField4 != null">spare_field_4 = #{spareField4},</if> |
| | | <if test="routeId != null">route_id = #{routeId},</if> |
| | | |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <update id="updateBsTechnologyRouteChildByCodeInfo" parameterType="BsTechnologyRouteChildInfo"> |
| | | update bs_technology_route_child_info |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="processesCode != null and processesCode != ''">processes_code = #{processesCode},</if> |
| | | <if test="processesName != null">processes_name = #{processesName},</if> |
| | | <if test="stepNo != null">step_no = #{stepNo},</if> |
| | | <if test="nextProcess != null">next_process = #{nextProcess},</if> |
| | | <if test="nextProcessBond != null">next_process_bond = #{nextProcessBond},</if> |
| | | <if test="keyProcessesFlag != null">key_processes_flag = #{keyProcessesFlag},</if> |
| | | <if test="preparationTime != null">preparation_time = #{preparationTime},</if> |
| | | <if test="waitTime != null">wait_time = #{waitTime},</if> |
| | | <if test="createUser != null">create_user = #{createUser},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="updateUser != null">update_user = #{updateUser},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="remark != null">remark = #{remark},</if> |
| | | <if test="routeCode != null">route_code = #{routeCode},</if> |
| | | <if test="spareField1 != null">spare_field_1 = #{spareField1},</if> |
| | | <if test="spareField2 != null">spare_field_2 = #{spareField2},</if> |
| | | <if test="spareField3 != null">spare_field_3 = #{spareField3},</if> |
| | | <if test="spareField4 != null">spare_field_4 = #{spareField4},</if> |
| | | <if test="routeId != null">route_id = #{routeId},</if> |
| | | |
| | | </trim> |
| | | where route_code = #{routeCode} |
| | | </update> |
| | | |
| | | <delete id="deleteBsTechnologyRouteChildInfoById" parameterType="Long"> |
| | | delete from bs_technology_route_child_info where id = #{id} |
| | | </delete> |