| | |
| | | select id, order_no, engine_no, product_type, model, production_status, working_hours, current_workstation, quality_status, whether_or_print, report_10, report_20, combined_box_time, final_assembly_time, operator, operate_time, status, spare_field_1, spare_field_2, spare_field_3, spare_field_4, create_user, create_time, update_user, update_time, remarks, report_30, box_closing_online_time, closing_box_offline_time, final_assembly_launch_time, final_assembly_offline_time, cvt_launch_time, cvt_offline_time from bs_order_scheduling |
| | | </sql> |
| | | |
| | | <sql id="selectBsOrderSchedulingForReport"> |
| | | select id, engine_no, report_20, remarks from bs_order_scheduling |
| | | </sql> |
| | | |
| | | <select id="selectBsOrderSchedulingForReport" |
| | | parameterType="BsOrderScheduling" resultMap="BsOrderSchedulingResult"> |
| | | <include refid="selectBsOrderSchedulingForReport"/> |
| | | <where> |
| | | <if test="engineNoList != null and engineNoList.size() > 0"> |
| | | and engine_no in |
| | | <foreach collection="engineNoList" open="(" close=")" separator="," item="engine"> |
| | | #{engine} |
| | | </foreach> |
| | | </if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectBsOrderSchedulingList" parameterType="BsOrderScheduling" resultMap="BsOrderSchedulingResult"> |
| | | <include refid="selectBsOrderSchedulingVo"/> |
| | | <where> |