| | |
| | | <result property="paramLower" column="param_lower" /> |
| | | <result property="paramStandard" column="param_standard" /> |
| | | <result property="collectionTime" column="collection_time" /> |
| | | <result property="spareField1" column="spare_field1" /> |
| | | <result property="moduleCode" column="module_code" /> |
| | | <result property="spareField2" column="spare_field2" /> |
| | | <result property="createUser" column="create_user" /> |
| | | <result property="createTime" column="create_time" /> |
| | |
| | | </resultMap> |
| | | |
| | | <sql id="selectDaParamCollectionVo"> |
| | | select id, work_order_no, sfc_code, product_code, production_line, location_code, equipment_no, param_code, param_value, param_upper, param_lower, param_standard, collection_time, spare_field1, spare_field2, create_user, create_time, update_user, update_time, state, param_name, unit, type from da_param_collection |
| | | select id, work_order_no, sfc_code, product_code, production_line, location_code, equipment_no, param_code, param_value, param_upper, param_lower, param_standard, collection_time, module_code, spare_field2, create_user, create_time, update_user, update_time, state, param_name, unit, type from da_param_collection |
| | | </sql> |
| | | |
| | | <select id="selectDaParamCollectionList" parameterType="DaParamCollection" resultMap="DaParamCollectionResult"> |
| | |
| | | <if test="paramLower != null">param_lower,</if> |
| | | <if test="paramStandard != null">param_standard,</if> |
| | | <if test="collectionTime != null">collection_time,</if> |
| | | <if test="spareField1 != null">spare_field1,</if> |
| | | <if test="moduleCode != null">module_code,</if> |
| | | <if test="spareField2 != null">spare_field2,</if> |
| | | <if test="createUser != null">create_user,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | |
| | | <if test="paramLower != null">#{paramLower},</if> |
| | | <if test="paramStandard != null">#{paramStandard},</if> |
| | | <if test="collectionTime != null">#{collectionTime},</if> |
| | | <if test="spareField1 != null">#{spareField1},</if> |
| | | <if test="moduleCode != null">#{moduleCode},</if> |
| | | <if test="spareField2 != null">#{spareField2},</if> |
| | | <if test="createUser != null">#{createUser},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | |
| | | <if test="paramLower != null">param_lower = #{paramLower},</if> |
| | | <if test="paramStandard != null">param_standard = #{paramStandard},</if> |
| | | <if test="collectionTime != null">collection_time = #{collectionTime},</if> |
| | | <if test="spareField1 != null">spare_field_1 = #{spareField1},</if> |
| | | <if test="moduleCode != null">spare_field_1 = #{moduleCode},</if> |
| | | <if test="spareField2 != null">spare_field_2 = #{spareField2},</if> |
| | | <if test="createUser != null">create_user = #{createUser},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |