| | |
| | | <resultMap id="BaseResultMap" type="com.dy.pmsGlobal.pojoSta.StaDeviceLast"> |
| | | <id property="id" column="id" jdbcType="BIGINT"/> |
| | | <result property="equipNo" column="equip_no" jdbcType="VARCHAR"/> |
| | | <result property="planId" column="plan_id" jdbcType="VARCHAR"/> |
| | | <result property="stationId" column="station_id" jdbcType="VARCHAR"/> |
| | | <result property="currNode" column="curr_node" jdbcType="VARCHAR"/> |
| | | <result property="nextNode" column="next_node" jdbcType="VARCHAR"/> |
| | | <result property="planId" column="plan_id" jdbcType="BIGINT"/> |
| | | <result property="stationId" column="station_id" jdbcType="BIGINT"/> |
| | | <result property="currNode" column="curr_node" jdbcType="BIGINT"/> |
| | | <result property="nextNode" column="next_node" jdbcType="BIGINT"/> |
| | | <result property="status" column="status" jdbcType="TINYINT"/> |
| | | <result property="result" column="result" jdbcType="TINYINT"/> |
| | | <result property="errorCode" column="error_code" jdbcType="VARCHAR"/> |
| | |
| | | <result property="assistants" column="assistants" jdbcType="VARCHAR"/> |
| | | <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/> |
| | | <result property="updatedDate" column="updated_date" jdbcType="TIMESTAMP"/> |
| | | <result property="updatedBy" column="updated_by" jdbcType="VARCHAR"/> |
| | | <result property="updatedBy" column="updated_by" jdbcType="BIGINT"/> |
| | | <result property="inStationTime" column="in_station_time" jdbcType="TIMESTAMP"/> |
| | | </resultMap> |
| | | |
| | |
| | | ,memo,assistants,create_time |
| | | ,updated_date,updated_by,in_station_time |
| | | ) |
| | | values (#{id,jdbcType=BIGINT},#{equipNo,jdbcType=VARCHAR},#{planId,jdbcType=VARCHAR} |
| | | ,#{stationId,jdbcType=VARCHAR},#{currNode,jdbcType=VARCHAR},#{nextNode,jdbcType=VARCHAR} |
| | | values (#{id,jdbcType=BIGINT},#{equipNo,jdbcType=VARCHAR},#{planId,jdbcType=BIGINT} |
| | | ,#{stationId,jdbcType=BIGINT},#{currNode,jdbcType=BIGINT},#{nextNode,jdbcType=BIGINT} |
| | | ,#{status,jdbcType=TINYINT},#{result,jdbcType=TINYINT},#{errorCode,jdbcType=VARCHAR} |
| | | ,#{memo,jdbcType=VARCHAR},#{assistants,jdbcType=VARCHAR},#{createTime,jdbcType=TIMESTAMP} |
| | | ,#{updatedDate,jdbcType=TIMESTAMP},#{updatedBy,jdbcType=VARCHAR},#{inStationTime,jdbcType=TIMESTAMP} |
| | | ,#{updatedDate,jdbcType=TIMESTAMP},#{updatedBy,jdbcType=BIGINT},#{inStationTime,jdbcType=TIMESTAMP} |
| | | ) |
| | | </insert> |
| | | <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoSta.StaDeviceLast" useGeneratedKeys="true"> |
| | |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">#{id,jdbcType=BIGINT},</if> |
| | | <if test="equipNo != null">#{equipNo,jdbcType=VARCHAR},</if> |
| | | <if test="planId != null">#{planId,jdbcType=VARCHAR},</if> |
| | | <if test="stationId != null">#{stationId,jdbcType=VARCHAR},</if> |
| | | <if test="currNode != null">#{currNode,jdbcType=VARCHAR},</if> |
| | | <if test="nextNode != null">#{nextNode,jdbcType=VARCHAR},</if> |
| | | <if test="planId != null">#{planId,jdbcType=BIGINT},</if> |
| | | <if test="stationId != null">#{stationId,jdbcType=BIGINT},</if> |
| | | <if test="currNode != null">#{currNode,jdbcType=BIGINT},</if> |
| | | <if test="nextNode != null">#{nextNode,jdbcType=BIGINT},</if> |
| | | <if test="status != null">#{status,jdbcType=TINYINT},</if> |
| | | <if test="result != null">#{result,jdbcType=TINYINT},</if> |
| | | <if test="errorCode != null">#{errorCode,jdbcType=VARCHAR},</if> |
| | |
| | | <if test="assistants != null">#{assistants,jdbcType=VARCHAR},</if> |
| | | <if test="createTime != null">#{createTime,jdbcType=TIMESTAMP},</if> |
| | | <if test="updatedDate != null">#{updatedDate,jdbcType=TIMESTAMP},</if> |
| | | <if test="updatedBy != null">#{updatedBy,jdbcType=VARCHAR},</if> |
| | | <if test="updatedBy != null">#{updatedBy,jdbcType=BIGINT},</if> |
| | | <if test="inStationTime != null">#{inStationTime,jdbcType=TIMESTAMP},</if> |
| | | </trim> |
| | | </insert> |
| | |
| | | equip_no = #{equipNo,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="planId != null"> |
| | | plan_id = #{planId,jdbcType=VARCHAR}, |
| | | plan_id = #{planId,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="stationId != null"> |
| | | station_id = #{stationId,jdbcType=VARCHAR}, |
| | | station_id = #{stationId,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="currNode != null"> |
| | | curr_node = #{currNode,jdbcType=VARCHAR}, |
| | | curr_node = #{currNode,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="nextNode != null"> |
| | | next_node = #{nextNode,jdbcType=VARCHAR}, |
| | | next_node = #{nextNode,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="status != null"> |
| | | status = #{status,jdbcType=TINYINT}, |
| | |
| | | updated_date = #{updatedDate,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="updatedBy != null"> |
| | | updated_by = #{updatedBy,jdbcType=VARCHAR}, |
| | | updated_by = #{updatedBy,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="inStationTime != null"> |
| | | in_station_time = #{inStationTime,jdbcType=TIMESTAMP}, |
| | |
| | | update sta_device_last |
| | | set |
| | | equip_no = #{equipNo,jdbcType=VARCHAR}, |
| | | plan_id = #{planId,jdbcType=VARCHAR}, |
| | | station_id = #{stationId,jdbcType=VARCHAR}, |
| | | curr_node = #{currNode,jdbcType=VARCHAR}, |
| | | next_node = #{nextNode,jdbcType=VARCHAR}, |
| | | plan_id = #{planId,jdbcType=BIGINT}, |
| | | station_id = #{stationId,jdbcType=BIGINT}, |
| | | curr_node = #{currNode,jdbcType=BIGINT}, |
| | | next_node = #{nextNode,jdbcType=BIGINT}, |
| | | status = #{status,jdbcType=TINYINT}, |
| | | result = #{result,jdbcType=TINYINT}, |
| | | error_code = #{errorCode,jdbcType=VARCHAR}, |
| | |
| | | assistants = #{assistants,jdbcType=VARCHAR}, |
| | | create_time = #{createTime,jdbcType=TIMESTAMP}, |
| | | updated_date = #{updatedDate,jdbcType=TIMESTAMP}, |
| | | updated_by = #{updatedBy,jdbcType=VARCHAR}, |
| | | updated_by = #{updatedBy,jdbcType=BIGINT}, |
| | | in_station_time = #{inStationTime,jdbcType=TIMESTAMP} |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </update> |