add number for product_log
| | |
| | | * 备注 |
| | | */ |
| | | public String memo; |
| | | /** |
| | | * 默认为1,没有设备码时可设置生产数量 |
| | | */ |
| | | public Integer number; |
| | | |
| | | @TableField(exist = false) |
| | | public String planName; |
| | |
| | | * 备注 |
| | | */ |
| | | public String memo; |
| | | /** |
| | | * 默认为1,没有设备码时可设置生产数量 |
| | | */ |
| | | public Integer number; |
| | | |
| | | |
| | | } |
| | |
| | | <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> |
| | | |
| | | |
| | |
| | | ,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> |
| | |
| | | <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> |
| | | |
| | | <sql id="Base_Column_List"> |
| | |
| | | curr_node,node_content,device_cycle_content, |
| | | status,result,error_msg, |
| | | assistants,in_time,out_time, |
| | | updated_by,memo |
| | | updated_by,memo,number |
| | | </sql> |
| | | <!-- <update id="createNewTable">--> |
| | | <!-- CREATE TABLE ${newTableName} LIKE sta_device_production_log--> |