| | |
| | | <result property="status" column="status" typeHandler="com.nanometer.smartlab.entity.handler.ApplyStatusHandler"></result> |
| | | <result property="applyUserId" column="apply_user_id"></result> |
| | | <result property="arrivalTime" column="arrival_time"></result> |
| | | <result property="articleNumber" column="articleNumber"></result> |
| | | <result property="projectManage" column="projectManage"/> |
| | | <result property="project" column="project"/> |
| | | <association property="reagent" javaType="com.nanometer.smartlab.entity.SysReagent"> |
| | |
| | | <update id="updateOpeApplyInfo" parameterType="java.util.Map"> |
| | | update |
| | | ope_apply |
| | | set status = #{status}, |
| | | arrival_time = #{arrivalTime}, |
| | | consignee_id = #{consigneeId} |
| | | set status = #{status} |
| | | <if test="arrivalTime!=null" > |
| | | ,arrival_time = #{arrivalTime} |
| | | </if> |
| | | <if test="consigneeId!=null" > |
| | | ,consignee_id = #{consigneeId} |
| | | </if> |
| | | where valid_flag = 1 |
| | | and id = #{applyId} |
| | | </update> |