| | |
| | | <result property="outTime" column="out_time" jdbcType="TIMESTAMP"/> |
| | | <result property="updatedBy" column="updated_by" jdbcType="BIGINT"/> |
| | | <result property="memo" column="memo" jdbcType="VARCHAR"/> |
| | | <result property="number" column="number" jdbcType="INTEGER"/> |
| | | </resultMap> |
| | | <resultMap id="joinResultMap" type="com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog" extends="BaseResultMap"> |
| | | <result property="planName" column="plan_name" jdbcType="VARCHAR"/> |
| | |
| | | curr_node,node_content,device_cycle_content, |
| | | status,result, |
| | | error_msg,assistants,in_time, |
| | | out_time,updated_by,memo |
| | | out_time,updated_by,memo,number |
| | | </sql> |
| | | |
| | | |
| | |
| | | select |
| | | t.* ,p.`name` plan_name,s.`name` station_name,u.`name` update_user_name |
| | | FROM |
| | | sta_device_production_log t |
| | | ( |
| | | select <include refid="Base_Column_List" /> from sta_device_production_log_past where device_no = #{deviceNo,jdbcType=VARCHAR} union |
| | | select <include refid="Base_Column_List" /> from sta_device_production_log where device_no = #{deviceNo,jdbcType=VARCHAR} |
| | | ) t |
| | | left join pr_assembly_plan p on t.plan_id=p.id |
| | | left join plt_station s on s.id = t.station_id |
| | | left JOIN ba_user u on u.id=t.updated_by |
| | | where t.device_no = #{deviceNo,jdbcType=VARCHAR} |
| | | ORDER BY t.id DESC |
| | | </select> |
| | | |
| | | <select id="selectProductLog" resultMap="joinResultMap"> |
| | | select |
| | | t.* ,p.`name` plan_name,s.`name` station_name,u.`name` update_user_name |
| | | FROM |
| | | ( |
| | | select <include refid="Base_Column_List" /> from sta_device_production_log_past |
| | | <where> |
| | | <if test="deviceNo != null and deviceNo !=''"> |
| | | and device_no = #{deviceNo,jdbcType=VARCHAR} |
| | | </if> |
| | | <if test="startTime != null"> |
| | | and out_time <![CDATA[ > ]]> #{startTime,jdbcType=TIMESTAMP} |
| | | </if> |
| | | <if test="endTime != null"> |
| | | and out_time <![CDATA[ < ]]> #{endTime,jdbcType=TIMESTAMP} |
| | | </if> |
| | | </where> |
| | | union |
| | | select <include refid="Base_Column_List" /> from sta_device_production_log |
| | | <where> |
| | | <if test="deviceNo != null and deviceNo !=''"> |
| | | and device_no = #{deviceNo,jdbcType=VARCHAR} |
| | | </if> |
| | | <if test="startTime != null"> |
| | | and out_time <![CDATA[ > ]]> #{startTime,jdbcType=TIMESTAMP} |
| | | </if> |
| | | <if test="endTime != null"> |
| | | and out_time <![CDATA[ < ]]> #{endTime,jdbcType=TIMESTAMP} |
| | | </if> |
| | | </where> |
| | | ) t |
| | | left join pr_assembly_plan p on t.plan_id=p.id |
| | | left join plt_station s on s.id = t.station_id |
| | | left JOIN ba_user u on u.id=t.updated_by |
| | | ORDER BY t.id DESC |
| | | </select> |
| | | |
| | |
| | | ,curr_node,node_content,device_cycle_content |
| | | ,status,result |
| | | ,error_msg,assistants,in_time |
| | | ,out_time,updated_by,memo |
| | | ,out_time,updated_by,memo,number |
| | | ) |
| | | values (#{id,jdbcType=BIGINT},#{deviceNo,jdbcType=VARCHAR},#{workId,jdbcType=BIGINT} |
| | | ,#{repairId,jdbcType=BIGINT},#{planId,jdbcType=BIGINT},#{stationId,jdbcType=BIGINT} |
| | | ,#{currNode,jdbcType=BIGINT},#{nodeContent,jdbcType=VARCHAR},#{deviceCycleContent,jdbcType=VARCHAR} |
| | | ,#{status,jdbcType=TINYINT},#{result,jdbcType=TINYINT} |
| | | ,#{errorMsg,jdbcType=VARCHAR},#{assistants,jdbcType=VARCHAR},#{inTime,jdbcType=TIMESTAMP} |
| | | ,#{outTime,jdbcType=TIMESTAMP},#{updatedBy,jdbcType=BIGINT},#{memo,jdbcType=VARCHAR} |
| | | ,#{outTime,jdbcType=TIMESTAMP},#{updatedBy,jdbcType=BIGINT},#{memo,jdbcType=VARCHAR}, #{number,jdbcType=INTEGER} |
| | | ) |
| | | </insert> |
| | | <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog" useGeneratedKeys="true"> |
| | |
| | | <if test="outTime != null">out_time,</if> |
| | | <if test="updatedBy != null">updated_by,</if> |
| | | <if test="memo != null">memo,</if> |
| | | <if test="number != null">number,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">#{id,jdbcType=BIGINT},</if> |
| | |
| | | <if test="outTime != null">#{outTime,jdbcType=TIMESTAMP},</if> |
| | | <if test="updatedBy != null">#{updatedBy,jdbcType=BIGINT},</if> |
| | | <if test="memo != null">#{memo,jdbcType=VARCHAR},</if> |
| | | <if test="number != null">#{number,jdbcType=INTEGER},</if> |
| | | </trim> |
| | | </insert> |
| | | <update id="updateByPrimaryKeySelective" parameterType="com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog"> |
| | |
| | | <if test="memo != null"> |
| | | memo = #{memo,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="number != null"> |
| | | number = #{number,jdbcType=INTEGER}, |
| | | </if> |
| | | </set> |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </update> |
| | |
| | | in_time = #{inTime,jdbcType=TIMESTAMP}, |
| | | out_time = #{outTime,jdbcType=TIMESTAMP}, |
| | | updated_by = #{updatedBy,jdbcType=BIGINT}, |
| | | memo = #{memo,jdbcType=VARCHAR} |
| | | memo = #{memo,jdbcType=VARCHAR}, |
| | | number = #{number,jdbcType=INTEGER} |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </update> |
| | | </mapper> |