提交 | 用户 | 时间
|
d9cf6b
|
1 |
<?xml version="1.0" encoding="UTF-8" ?> |
J |
2 |
<!DOCTYPE mapper |
|
3 |
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
4 |
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
5 |
<mapper namespace="com.jcdm.main.bs.orderScheduling.mapper.BsOrderSchedulingMapper"> |
|
6 |
|
|
7 |
<resultMap type="BsOrderScheduling" id="BsOrderSchedulingResult"> |
2aea64
|
8 |
<result property="id" column="id" /> |
J |
9 |
<result property="orderNo" column="order_no" /> |
d9cf6b
|
10 |
<result property="engineNo" column="engine_no" /> |
J |
11 |
<result property="productType" column="product_type" /> |
|
12 |
<result property="model" column="model" /> |
|
13 |
<result property="productionStatus" column="production_status" /> |
|
14 |
<result property="workingHours" column="working_hours" /> |
|
15 |
<result property="currentWorkstation" column="current_workstation" /> |
|
16 |
<result property="qualityStatus" column="quality_status" /> |
|
17 |
<result property="whetherOrPrint" column="whether_or_print" /> |
|
18 |
<result property="report10" column="report_10" /> |
|
19 |
<result property="report20" column="report_20" /> |
2aea64
|
20 |
<result property="combinedBoxTime" column="combined_box_time" /> |
J |
21 |
<result property="finalAssemblyTime" column="final_assembly_time" /> |
d9cf6b
|
22 |
<result property="operator" column="operator" /> |
J |
23 |
<result property="operateTime" column="operate_time" /> |
2aea64
|
24 |
<result property="status" column="status" /> |
J |
25 |
<result property="spareField1" column="spare_field_1" /> |
|
26 |
<result property="spareField2" column="spare_field_2" /> |
|
27 |
<result property="spareField3" column="spare_field_3" /> |
|
28 |
<result property="spareField4" column="spare_field_4" /> |
|
29 |
<result property="createUser" column="create_user" /> |
|
30 |
<result property="createTime" column="create_time" /> |
|
31 |
<result property="updateUser" column="update_user" /> |
|
32 |
<result property="updateTime" column="update_time" /> |
|
33 |
<result property="remarks" column="remarks" /> |
1391b3
|
34 |
<result property="report30" column="report_30" /> |
797845
|
35 |
<result property="boxClosingOnlineTime" column="box_closing_online_time" /> |
懒 |
36 |
<result property="closingBoxOfflineTime" column="closing_box_offline_time" /> |
|
37 |
<result property="finalAssemblyLaunchTime" column="final_assembly_launch_time" /> |
|
38 |
<result property="finalAssemblyOfflineTime" column="final_assembly_offline_time" /> |
|
39 |
<result property="cvtLaunchTime" column="cvt_launch_time" /> |
|
40 |
<result property="cvtOfflineTime" column="cvt_offline_time" /> |
1391b3
|
41 |
|
d9cf6b
|
42 |
</resultMap> |
J |
43 |
|
|
44 |
<sql id="selectBsOrderSchedulingVo"> |
797845
|
45 |
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 |
d9cf6b
|
46 |
</sql> |
J |
47 |
|
|
48 |
<select id="selectBsOrderSchedulingList" parameterType="BsOrderScheduling" resultMap="BsOrderSchedulingResult"> |
|
49 |
<include refid="selectBsOrderSchedulingVo"/> |
|
50 |
<where> |
2aea64
|
51 |
<if test="orderNo != null and orderNo != ''"> and order_no = #{orderNo}</if> |
d9cf6b
|
52 |
<if test="engineNo != null and engineNo != ''"> and engine_no = #{engineNo}</if> |
J |
53 |
<if test="productType != null and productType != ''"> and product_type = #{productType}</if> |
|
54 |
<if test="model != null and model != ''"> and model = #{model}</if> |
|
55 |
<if test="productionStatus != null and productionStatus != ''"> and production_status = #{productionStatus}</if> |
|
56 |
<if test="workingHours != null and workingHours != ''"> and working_hours = #{workingHours}</if> |
|
57 |
<if test="currentWorkstation != null and currentWorkstation != ''"> and current_workstation = #{currentWorkstation}</if> |
|
58 |
<if test="qualityStatus != null and qualityStatus != ''"> and quality_status = #{qualityStatus}</if> |
|
59 |
<if test="whetherOrPrint != null and whetherOrPrint != ''"> and whether_or_print = #{whetherOrPrint}</if> |
|
60 |
<if test="report10 != null and report10 != ''"> and report_10 = #{report10}</if> |
|
61 |
<if test="report20 != null and report20 != ''"> and report_20 = #{report20}</if> |
2aea64
|
62 |
<if test="combinedBoxTime != null and combinedBoxTime != ''"> and combined_box_time = #{combinedBoxTime}</if> |
J |
63 |
<if test="finalAssemblyTime != null and finalAssemblyTime != ''"> and final_assembly_time = #{finalAssemblyTime}</if> |
d9cf6b
|
64 |
<if test="operator != null and operator != ''"> and operator = #{operator}</if> |
J |
65 |
<if test="operateTime != null and operateTime != ''"> and operate_time = #{operateTime}</if> |
2aea64
|
66 |
<if test="status != null and status != ''"> and status = #{status}</if> |
J |
67 |
<if test="spareField1 != null and spareField1 != ''"> and spare_field_1 = #{spareField1}</if> |
|
68 |
<if test="spareField2 != null and spareField2 != ''"> and spare_field_2 = #{spareField2}</if> |
|
69 |
<if test="spareField3 != null and spareField3 != ''"> and spare_field_3 = #{spareField3}</if> |
|
70 |
<if test="spareField4 != null and spareField4 != ''"> and spare_field_4 = #{spareField4}</if> |
|
71 |
<if test="createUser != null and createUser != ''"> and create_user = #{createUser}</if> |
|
72 |
<if test="updateUser != null and updateUser != ''"> and update_user = #{updateUser}</if> |
|
73 |
<if test="remarks != null and remarks != ''"> and remarks = #{remarks}</if> |
1391b3
|
74 |
<if test="report30 != null and report30 != ''"> and report_30 = #{report30}</if> |
d2b752
|
75 |
<if test="dateConditions != null and dateConditions != ''"> and operate_time BETWEEN #{startTime} AND #{endTime}</if> |
797845
|
76 |
<if test="boxClosingOnlineTime != null and boxClosingOnlineTime != ''"> and box_closing_online_time = #{boxClosingOnlineTime}</if> |
懒 |
77 |
<if test="closingBoxOfflineTime != null and closingBoxOfflineTime != ''"> and closing_box_offline_time = #{closingBoxOfflineTime}</if> |
|
78 |
<if test="finalAssemblyLaunchTime != null and finalAssemblyLaunchTime != ''"> and final_assembly_launch_time = #{finalAssemblyLaunchTime}</if> |
|
79 |
<if test="finalAssemblyOfflineTime != null and finalAssemblyOfflineTime != ''"> and final_assembly_offline_time = #{finalAssemblyOfflineTime}</if> |
|
80 |
<if test="cvtLaunchTime != null and cvtLaunchTime != ''"> and cvt_launch_time = #{cvtLaunchTime}</if> |
|
81 |
<if test="cvtOfflineTime != null and cvtOfflineTime != ''"> and cvt_offline_time = #{cvtOfflineTime}</if> |
d2b752
|
82 |
|
1391b3
|
83 |
|
d9cf6b
|
84 |
</where> |
J |
85 |
</select> |
|
86 |
|
2aea64
|
87 |
<select id="selectBsOrderSchedulingById" parameterType="Long" resultMap="BsOrderSchedulingResult"> |
d9cf6b
|
88 |
<include refid="selectBsOrderSchedulingVo"/> |
2aea64
|
89 |
where id = #{id} |
d9cf6b
|
90 |
</select> |
0ae9ac
|
91 |
<select id="getPrepareOnlineList" resultType="com.jcdm.main.bs.orderScheduling.domain.BsOrderScheduling"> |
W |
92 |
select bos.* from bs_order_scheduling bos |
|
93 |
<where> |
|
94 |
<if test="prepareOnlineQuery.orderNo != null and prepareOnlineQuery.orderNo != '' "> |
|
95 |
and bos.order_no = #{prepareOnlineQuery.orderNo} |
|
96 |
</if> |
|
97 |
<if test="prepareOnlineQuery.engineNo != null and prepareOnlineQuery.engineNo != '' "> |
|
98 |
and bos.engine_no = #{prepareOnlineQuery.engineNo} |
|
99 |
</if> |
|
100 |
</where> |
|
101 |
</select> |
9ebb88
|
102 |
<select id="getProduceNumToday" resultType="java.lang.Integer"> |
W |
103 |
select count(*) from bs_order_scheduling |
|
104 |
where ${queryField} BETWEEN #{startTime} AND #{endTime} |
|
105 |
</select> |
0ae9ac
|
106 |
|
W |
107 |
|
2aea64
|
108 |
<insert id="insertBsOrderScheduling" parameterType="BsOrderScheduling" useGeneratedKeys="true" keyProperty="id"> |
d9cf6b
|
109 |
insert into bs_order_scheduling |
J |
110 |
<trim prefix="(" suffix=")" suffixOverrides=","> |
2aea64
|
111 |
<if test="orderNo != null">order_no,</if> |
d9cf6b
|
112 |
<if test="engineNo != null">engine_no,</if> |
J |
113 |
<if test="productType != null">product_type,</if> |
|
114 |
<if test="model != null">model,</if> |
|
115 |
<if test="productionStatus != null">production_status,</if> |
|
116 |
<if test="workingHours != null">working_hours,</if> |
|
117 |
<if test="currentWorkstation != null">current_workstation,</if> |
|
118 |
<if test="qualityStatus != null">quality_status,</if> |
|
119 |
<if test="whetherOrPrint != null">whether_or_print,</if> |
|
120 |
<if test="report10 != null">report_10,</if> |
|
121 |
<if test="report20 != null">report_20,</if> |
2aea64
|
122 |
<if test="combinedBoxTime != null">combined_box_time,</if> |
J |
123 |
<if test="finalAssemblyTime != null">final_assembly_time,</if> |
d9cf6b
|
124 |
<if test="operator != null">operator,</if> |
J |
125 |
<if test="operateTime != null">operate_time,</if> |
2aea64
|
126 |
<if test="status != null">status,</if> |
J |
127 |
<if test="spareField1 != null">spare_field_1,</if> |
|
128 |
<if test="spareField2 != null">spare_field_2,</if> |
|
129 |
<if test="spareField3 != null">spare_field_3,</if> |
|
130 |
<if test="spareField4 != null">spare_field_4,</if> |
|
131 |
<if test="createUser != null">create_user,</if> |
|
132 |
<if test="createTime != null">create_time,</if> |
|
133 |
<if test="updateUser != null">update_user,</if> |
|
134 |
<if test="updateTime != null">update_time,</if> |
|
135 |
<if test="remarks != null">remarks,</if> |
1391b3
|
136 |
<if test="report30 != null">report_30,</if> |
797845
|
137 |
<if test="boxClosingOnlineTime != null">box_closing_online_time,</if> |
懒 |
138 |
<if test="closingBoxOfflineTime != null">closing_box_offline_time,</if> |
|
139 |
<if test="finalAssemblyLaunchTime != null">final_assembly_launch_time,</if> |
|
140 |
<if test="finalAssemblyOfflineTime != null">final_assembly_offline_time,</if> |
|
141 |
<if test="cvtLaunchTime != null">cvt_launch_time,</if> |
|
142 |
<if test="cvtOfflineTime != null">cvt_offline_time,</if> |
d9cf6b
|
143 |
</trim> |
J |
144 |
<trim prefix="values (" suffix=")" suffixOverrides=","> |
2aea64
|
145 |
<if test="orderNo != null">#{orderNo},</if> |
d9cf6b
|
146 |
<if test="engineNo != null">#{engineNo},</if> |
J |
147 |
<if test="productType != null">#{productType},</if> |
|
148 |
<if test="model != null">#{model},</if> |
|
149 |
<if test="productionStatus != null">#{productionStatus},</if> |
|
150 |
<if test="workingHours != null">#{workingHours},</if> |
|
151 |
<if test="currentWorkstation != null">#{currentWorkstation},</if> |
|
152 |
<if test="qualityStatus != null">#{qualityStatus},</if> |
|
153 |
<if test="whetherOrPrint != null">#{whetherOrPrint},</if> |
|
154 |
<if test="report10 != null">#{report10},</if> |
|
155 |
<if test="report20 != null">#{report20},</if> |
2aea64
|
156 |
<if test="combinedBoxTime != null">#{combinedBoxTime},</if> |
J |
157 |
<if test="finalAssemblyTime != null">#{finalAssemblyTime},</if> |
d9cf6b
|
158 |
<if test="operator != null">#{operator},</if> |
J |
159 |
<if test="operateTime != null">#{operateTime},</if> |
2aea64
|
160 |
<if test="status != null">#{status},</if> |
J |
161 |
<if test="spareField1 != null">#{spareField1},</if> |
|
162 |
<if test="spareField2 != null">#{spareField2},</if> |
|
163 |
<if test="spareField3 != null">#{spareField3},</if> |
|
164 |
<if test="spareField4 != null">#{spareField4},</if> |
|
165 |
<if test="createUser != null">#{createUser},</if> |
|
166 |
<if test="createTime != null">#{createTime},</if> |
|
167 |
<if test="updateUser != null">#{updateUser},</if> |
|
168 |
<if test="updateTime != null">#{updateTime},</if> |
|
169 |
<if test="remarks != null">#{remarks},</if> |
1391b3
|
170 |
<if test="report30 != null">#{report30},</if> |
797845
|
171 |
<if test="boxClosingOnlineTime != null">#{boxClosingOnlineTime},</if> |
懒 |
172 |
<if test="closingBoxOfflineTime != null">#{closingBoxOfflineTime},</if> |
|
173 |
<if test="finalAssemblyLaunchTime != null">#{finalAssemblyLaunchTime},</if> |
|
174 |
<if test="finalAssemblyOfflineTime != null">#{finalAssemblyOfflineTime},</if> |
|
175 |
<if test="cvtLaunchTime != null">#{cvtLaunchTime},</if> |
|
176 |
<if test="cvtOfflineTime != null">#{cvtOfflineTime},</if> |
1391b3
|
177 |
|
懒 |
178 |
</trim> |
d9cf6b
|
179 |
</insert> |
J |
180 |
|
|
181 |
<update id="updateBsOrderScheduling" parameterType="BsOrderScheduling"> |
|
182 |
update bs_order_scheduling |
|
183 |
<trim prefix="SET" suffixOverrides=","> |
2aea64
|
184 |
<if test="orderNo != null">order_no = #{orderNo},</if> |
d9cf6b
|
185 |
<if test="engineNo != null">engine_no = #{engineNo},</if> |
J |
186 |
<if test="productType != null">product_type = #{productType},</if> |
|
187 |
<if test="model != null">model = #{model},</if> |
|
188 |
<if test="productionStatus != null">production_status = #{productionStatus},</if> |
|
189 |
<if test="workingHours != null">working_hours = #{workingHours},</if> |
|
190 |
<if test="currentWorkstation != null">current_workstation = #{currentWorkstation},</if> |
|
191 |
<if test="qualityStatus != null">quality_status = #{qualityStatus},</if> |
|
192 |
<if test="whetherOrPrint != null">whether_or_print = #{whetherOrPrint},</if> |
|
193 |
<if test="report10 != null">report_10 = #{report10},</if> |
|
194 |
<if test="report20 != null">report_20 = #{report20},</if> |
2aea64
|
195 |
<if test="combinedBoxTime != null">combined_box_time = #{combinedBoxTime},</if> |
J |
196 |
<if test="finalAssemblyTime != null">final_assembly_time = #{finalAssemblyTime},</if> |
d9cf6b
|
197 |
<if test="operator != null">operator = #{operator},</if> |
J |
198 |
<if test="operateTime != null">operate_time = #{operateTime},</if> |
2aea64
|
199 |
<if test="status != null">status = #{status},</if> |
J |
200 |
<if test="spareField1 != null">spare_field_1 = #{spareField1},</if> |
|
201 |
<if test="spareField2 != null">spare_field_2 = #{spareField2},</if> |
|
202 |
<if test="spareField3 != null">spare_field_3 = #{spareField3},</if> |
|
203 |
<if test="spareField4 != null">spare_field_4 = #{spareField4},</if> |
|
204 |
<if test="createUser != null">create_user = #{createUser},</if> |
|
205 |
<if test="createTime != null">create_time = #{createTime},</if> |
|
206 |
<if test="updateUser != null">update_user = #{updateUser},</if> |
|
207 |
<if test="updateTime != null">update_time = #{updateTime},</if> |
|
208 |
<if test="remarks != null">remarks = #{remarks},</if> |
1391b3
|
209 |
<if test="report30 != null">report_30 = #{report30},</if> |
797845
|
210 |
<if test="boxClosingOnlineTime != null">box_closing_online_time = #{boxClosingOnlineTime},</if> |
懒 |
211 |
<if test="closingBoxOfflineTime != null">closing_box_offline_time = #{closingBoxOfflineTime},</if> |
|
212 |
<if test="finalAssemblyLaunchTime != null">final_assembly_launch_time = #{finalAssemblyLaunchTime},</if> |
|
213 |
<if test="finalAssemblyOfflineTime != null">final_assembly_offline_time = #{finalAssemblyOfflineTime},</if> |
|
214 |
<if test="cvtLaunchTime != null">cvt_launch_time = #{cvtLaunchTime},</if> |
|
215 |
<if test="cvtOfflineTime != null">cvt_offline_time = #{cvtOfflineTime},</if> |
1391b3
|
216 |
|
d9cf6b
|
217 |
</trim> |
2aea64
|
218 |
where id = #{id} |
d9cf6b
|
219 |
</update> |
J |
220 |
|
2aea64
|
221 |
<delete id="deleteBsOrderSchedulingById" parameterType="Long"> |
J |
222 |
delete from bs_order_scheduling where id = #{id} |
d9cf6b
|
223 |
</delete> |
J |
224 |
|
2aea64
|
225 |
<delete id="deleteBsOrderSchedulingByIds" parameterType="String"> |
J |
226 |
delete from bs_order_scheduling where id in |
|
227 |
<foreach item="id" collection="array" open="(" separator="," close=")"> |
|
228 |
#{id} |
d9cf6b
|
229 |
</foreach> |
J |
230 |
</delete> |
|
231 |
</mapper> |