提交 | 用户 | 时间
|
e57a89
|
1 |
<?xml version="1.0" encoding="UTF-8" ?> |
懒 |
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.om.productionOrde.mapper.OmProductionOrdeInfoMapper"> |
|
6 |
|
|
7 |
<resultMap type="OmProductionOrdeInfo" id="OmProductionOrdeInfoResult"> |
|
8 |
<result property="id" column="id" /> |
|
9 |
<result property="workOrderNo" column="work_order_no" /> |
|
10 |
<result property="salesOrderCode" column="sales_order_code" /> |
|
11 |
<result property="productCode" column="product_code" /> |
|
12 |
<result property="productName" column="product_name" /> |
|
13 |
<result property="workshopCode" column="workshop_code" /> |
|
14 |
<result property="lineCode" column="line_code" /> |
|
15 |
<result property="routeCode" column="route_code" /> |
|
16 |
<result property="bomCode" column="bom_code" /> |
|
17 |
<result property="recipeCode" column="recipe_code" /> |
|
18 |
<result property="planQty" column="plan_qty" /> |
|
19 |
<result property="actualQty" column="actual_qty" /> |
|
20 |
<result property="badQty" column="bad_qty" /> |
|
21 |
<result property="scrapQty" column="scrap_qty" /> |
|
22 |
<result property="repairQty" column="repair_qty" /> |
|
23 |
<result property="actualOnlineQty" column="actual_online_qty" /> |
|
24 |
<result property="onlineCompletionMark" column="online_completion_mark" /> |
|
25 |
<result property="demandDate" column="demand_date" /> |
|
26 |
<result property="planStartTime" column="plan_start_time" /> |
|
27 |
<result property="planEndTime" column="plan_end_time" /> |
|
28 |
<result property="actualStartTime" column="actual_start_time" /> |
|
29 |
<result property="actualEndTime" column="actual_end_time" /> |
|
30 |
<result property="serialNumber" column="serial_number" /> |
|
31 |
<result property="orderStatus" column="order_status" /> |
|
32 |
<result property="createTime" column="create_time" /> |
|
33 |
<result property="updateTime" column="update_time" /> |
|
34 |
<result property="createUser" column="create_user" /> |
|
35 |
<result property="updateUser" column="update_user" /> |
|
36 |
<result property="remarks" column="remarks" /> |
|
37 |
<result property="streamNumber" column="stream_number" /> |
|
38 |
<result property="custom" column="custom" /> |
|
39 |
<result property="marketAreaCode" column="market_area_code" /> |
|
40 |
<result property="softwareVersionCode" column="software_version_code" /> |
|
41 |
<result property="productCompanyCode" column="product_company_code" /> |
523903
|
42 |
<result property="spareField1" column="spare_field1" /> |
懒 |
43 |
<result property="spareField2" column="spare_field2" /> |
|
44 |
<result property="spareField3" column="spare_field3" /> |
|
45 |
<result property="spareField4" column="spare_field4" /> |
648160
|
46 |
<result property="siteCode" column="site_code" /> |
H |
47 |
<result property="productNum" column="product_num" /> |
|
48 |
<result property="stationCode" column="station_code" /> |
|
49 |
<result property="resultCode" column="result_code" /> |
|
50 |
<result property="resultText" column="result_text" /> |
|
51 |
<result property="sfResult" column="sf_result" /> |
b64ed2
|
52 |
<result property="productModel" column="product_model" /> |
懒 |
53 |
|
e57a89
|
54 |
</resultMap> |
懒 |
55 |
|
|
56 |
<sql id="selectOmProductionOrdeInfoVo"> |
523903
|
57 |
select id,site_code,product_num,station_code, product_model,result_code,result_text,sf_result ,work_order_no, sales_order_code, product_code, product_name, workshop_code, line_code, route_code, bom_code, recipe_code, plan_qty, actual_qty, bad_qty, scrap_qty, repair_qty, actual_online_qty, online_completion_mark, demand_date, plan_start_time, plan_end_time, actual_start_time, actual_end_time, serial_number, order_status, create_time, update_time, create_user, update_user, remarks, stream_number, custom, market_area_code, software_version_code, product_company_code, spare_field1, spare_field2, spare_field3, spare_field4 from om_production_orde_info |
e57a89
|
58 |
</sql> |
懒 |
59 |
|
|
60 |
<select id="selectOmProductionOrdeInfoList" parameterType="OmProductionOrdeInfo" resultMap="OmProductionOrdeInfoResult"> |
|
61 |
<include refid="selectOmProductionOrdeInfoVo"/> |
|
62 |
<where> |
|
63 |
<if test="id != null and id != ''"> and id like concat('%', #{id}, '%')</if> |
|
64 |
<if test="workOrderNo != null and workOrderNo != ''"> and work_order_no like concat('%', #{workOrderNo}, '%')</if> |
|
65 |
<if test="salesOrderCode != null and salesOrderCode != ''"> and sales_order_code like concat('%', #{salesOrderCode}, '%')</if> |
|
66 |
<if test="productCode != null and productCode != ''"> and product_code like concat('%', #{productCode}, '%')</if> |
|
67 |
<if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if> |
|
68 |
<if test="workshopCode != null and workshopCode != ''"> and workshop_code like concat('%', #{workshopCode}, '%')</if> |
|
69 |
<if test="lineCode != null and lineCode != ''"> and line_code like concat('%', #{lineCode}, '%')</if> |
|
70 |
<if test="routeCode != null and routeCode != ''"> and route_code like concat('%', #{routeCode}, '%')</if> |
|
71 |
<if test="bomCode != null and bomCode != ''"> and bom_code like concat('%', #{bomCode}, '%')</if> |
|
72 |
<if test="recipeCode != null and recipeCode != ''"> and recipe_code like concat('%', #{recipeCode}, '%')</if> |
|
73 |
<if test="orderStatus != null and orderStatus != ''"> and order_status = #{orderStatus}</if> |
|
74 |
<if test="custom != null and custom != ''"> and custom like concat('%', #{custom}, '%')</if> |
|
75 |
<if test="marketAreaCode != null and marketAreaCode != ''"> and market_area_code like concat('%', #{marketAreaCode}, '%')</if> |
|
76 |
<if test="softwareVersionCode != null and softwareVersionCode != ''"> and software_version_code like concat('%', #{softwareVersionCode}, '%')</if> |
|
77 |
<if test="productCompanyCode != null and productCompanyCode != ''"> and product_company_code like concat('%', #{productCompanyCode}, '%')</if> |
648160
|
78 |
<if test="siteCode != null and siteCode != ''"> and site_code = #{siteCode}</if> |
H |
79 |
<if test="productNum != null and productNum != ''"> and product_num = #{productNum}</if> |
|
80 |
<if test="stationCode != null and stationCode != ''"> and station_code = #{stationCode}</if> |
|
81 |
<if test="resultText != null and resultText != ''"> and result_text = #{resultText}</if> |
|
82 |
<if test="resultCode != null and resultCode != ''"> and result_code = #{resultCode}</if> |
|
83 |
<if test="sfResult != null and sfResult != ''"> and sf_result = #{sfResult}</if> |
e57a89
|
84 |
</where> |
懒 |
85 |
ORDER BY stream_number DESC |
|
86 |
</select> |
|
87 |
|
|
88 |
<select id="selectOmProductionOrdeInfoById" parameterType="Long" resultMap="OmProductionOrdeInfoResult"> |
|
89 |
<include refid="selectOmProductionOrdeInfoVo"/> |
|
90 |
where id = #{id} |
|
91 |
</select> |
|
92 |
|
|
93 |
<insert id="insertOmProductionOrdeInfo" parameterType="OmProductionOrdeInfo"> |
|
94 |
insert into om_production_orde_info |
|
95 |
<trim prefix="(" suffix=")" suffixOverrides=","> |
|
96 |
<if test="id != null">id,</if> |
|
97 |
<if test="workOrderNo != null">work_order_no,</if> |
|
98 |
<if test="salesOrderCode != null">sales_order_code,</if> |
|
99 |
<if test="productCode != null">product_code,</if> |
|
100 |
<if test="productName != null">product_name,</if> |
|
101 |
<if test="workshopCode != null">workshop_code,</if> |
|
102 |
<if test="lineCode != null">line_code,</if> |
|
103 |
<if test="routeCode != null">route_code,</if> |
|
104 |
<if test="bomCode != null">bom_code,</if> |
|
105 |
<if test="recipeCode != null">recipe_code,</if> |
|
106 |
<if test="planQty != null">plan_qty,</if> |
|
107 |
<if test="actualQty != null">actual_qty,</if> |
|
108 |
<if test="badQty != null">bad_qty,</if> |
|
109 |
<if test="scrapQty != null">scrap_qty,</if> |
|
110 |
<if test="repairQty != null">repair_qty,</if> |
|
111 |
<if test="actualOnlineQty != null">actual_online_qty,</if> |
|
112 |
<if test="onlineCompletionMark != null">online_completion_mark,</if> |
|
113 |
<if test="demandDate != null">demand_date,</if> |
|
114 |
<if test="planStartTime != null">plan_start_time,</if> |
|
115 |
<if test="planEndTime != null">plan_end_time,</if> |
|
116 |
<if test="actualStartTime != null">actual_start_time,</if> |
|
117 |
<if test="actualEndTime != null">actual_end_time,</if> |
|
118 |
<if test="serialNumber != null">serial_number,</if> |
|
119 |
<if test="orderStatus != null">order_status,</if> |
|
120 |
<if test="createTime != null">create_time,</if> |
|
121 |
<if test="updateTime != null">update_time,</if> |
|
122 |
<if test="createUser != null">create_user,</if> |
|
123 |
<if test="updateUser != null">update_user,</if> |
|
124 |
<if test="remarks != null">remarks,</if> |
|
125 |
<if test="streamNumber != null">stream_number,</if> |
|
126 |
<if test="custom != null">custom,</if> |
|
127 |
<if test="marketAreaCode != null">market_area_code,</if> |
|
128 |
<if test="softwareVersionCode != null">software_version_code,</if> |
|
129 |
<if test="productCompanyCode != null">product_company_code,</if> |
|
130 |
<if test="spareField1 != null">spare_field_1,</if> |
|
131 |
<if test="spareField2 != null">spare_field_2,</if> |
|
132 |
<if test="spareField3 != null">spare_field_3,</if> |
|
133 |
<if test="spareField4 != null">spare_field_4,</if> |
648160
|
134 |
<if test="siteCode != null">site_code,</if> |
H |
135 |
<if test="productNum != null">product_num,</if> |
|
136 |
<if test="stationCode != null">station_code,</if> |
|
137 |
<if test="resultText != null">result_text,</if> |
|
138 |
<if test="resultCode != null">result_code,</if> |
|
139 |
<if test="sfResult != null">sf_result,</if> |
b64ed2
|
140 |
<if test="productModel != null">product_model,</if> |
懒 |
141 |
|
|
142 |
</trim> |
e57a89
|
143 |
<trim prefix="values (" suffix=")" suffixOverrides=","> |
懒 |
144 |
<if test="id != null">#{id},</if> |
|
145 |
<if test="workOrderNo != null">#{workOrderNo},</if> |
|
146 |
<if test="salesOrderCode != null">#{salesOrderCode},</if> |
|
147 |
<if test="productCode != null">#{productCode},</if> |
|
148 |
<if test="productName != null">#{productName},</if> |
|
149 |
<if test="workshopCode != null">#{workshopCode},</if> |
|
150 |
<if test="lineCode != null">#{lineCode},</if> |
|
151 |
<if test="routeCode != null">#{routeCode},</if> |
|
152 |
<if test="bomCode != null">#{bomCode},</if> |
|
153 |
<if test="recipeCode != null">#{recipeCode},</if> |
|
154 |
<if test="planQty != null">#{planQty},</if> |
|
155 |
<if test="actualQty != null">#{actualQty},</if> |
|
156 |
<if test="badQty != null">#{badQty},</if> |
|
157 |
<if test="scrapQty != null">#{scrapQty},</if> |
|
158 |
<if test="repairQty != null">#{repairQty},</if> |
|
159 |
<if test="actualOnlineQty != null">#{actualOnlineQty},</if> |
|
160 |
<if test="onlineCompletionMark != null">#{onlineCompletionMark},</if> |
|
161 |
<if test="demandDate != null">#{demandDate},</if> |
|
162 |
<if test="planStartTime != null">#{planStartTime},</if> |
|
163 |
<if test="planEndTime != null">#{planEndTime},</if> |
|
164 |
<if test="actualStartTime != null">#{actualStartTime},</if> |
|
165 |
<if test="actualEndTime != null">#{actualEndTime},</if> |
|
166 |
<if test="serialNumber != null">#{serialNumber},</if> |
|
167 |
<if test="orderStatus != null">#{orderStatus},</if> |
|
168 |
<if test="createTime != null">#{createTime},</if> |
|
169 |
<if test="updateTime != null">#{updateTime},</if> |
|
170 |
<if test="createUser != null">#{createUser},</if> |
|
171 |
<if test="updateUser != null">#{updateUser},</if> |
|
172 |
<if test="remarks != null">#{remarks},</if> |
|
173 |
<if test="streamNumber != null">#{streamNumber},</if> |
|
174 |
<if test="custom != null">#{custom},</if> |
|
175 |
<if test="marketAreaCode != null">#{marketAreaCode},</if> |
|
176 |
<if test="softwareVersionCode != null">#{softwareVersionCode},</if> |
|
177 |
<if test="productCompanyCode != null">#{productCompanyCode},</if> |
|
178 |
<if test="spareField1 != null">#{spareField1},</if> |
|
179 |
<if test="spareField2 != null">#{spareField2},</if> |
|
180 |
<if test="spareField3 != null">#{spareField3},</if> |
|
181 |
<if test="spareField4 != null">#{spareField4},</if> |
648160
|
182 |
<if test="siteCode != null">#{siteCode},</if> |
H |
183 |
<if test="productNum != null">#{productNum},</if> |
|
184 |
<if test="stationCode != null">#{stationCode},</if> |
|
185 |
<if test="resultText != null">#{resultText},</if> |
|
186 |
<if test="resultCode != null">#{resultCode},</if> |
|
187 |
<if test="sfResult != null">#{sfResult},</if> |
b64ed2
|
188 |
<if test="productModel != null">#{productModel},</if> |
懒 |
189 |
|
|
190 |
</trim> |
e57a89
|
191 |
</insert> |
懒 |
192 |
|
|
193 |
<update id="updateOmProductionOrdeInfo" parameterType="OmProductionOrdeInfo"> |
|
194 |
update om_production_orde_info |
|
195 |
<trim prefix="SET" suffixOverrides=","> |
|
196 |
<if test="workOrderNo != null">work_order_no = #{workOrderNo},</if> |
|
197 |
<if test="salesOrderCode != null">sales_order_code = #{salesOrderCode},</if> |
|
198 |
<if test="productCode != null">product_code = #{productCode},</if> |
|
199 |
<if test="productName != null">product_name = #{productName},</if> |
|
200 |
<if test="workshopCode != null">workshop_code = #{workshopCode},</if> |
|
201 |
<if test="lineCode != null">line_code = #{lineCode},</if> |
|
202 |
<if test="routeCode != null">route_code = #{routeCode},</if> |
|
203 |
<if test="bomCode != null">bom_code = #{bomCode},</if> |
|
204 |
<if test="recipeCode != null">recipe_code = #{recipeCode},</if> |
|
205 |
<if test="planQty != null">plan_qty = #{planQty},</if> |
|
206 |
<if test="actualQty != null">actual_qty = #{actualQty},</if> |
|
207 |
<if test="badQty != null">bad_qty = #{badQty},</if> |
|
208 |
<if test="scrapQty != null">scrap_qty = #{scrapQty},</if> |
|
209 |
<if test="repairQty != null">repair_qty = #{repairQty},</if> |
|
210 |
<if test="actualOnlineQty != null">actual_online_qty = #{actualOnlineQty},</if> |
|
211 |
<if test="onlineCompletionMark != null">online_completion_mark = #{onlineCompletionMark},</if> |
|
212 |
<if test="demandDate != null">demand_date = #{demandDate},</if> |
|
213 |
<if test="planStartTime != null">plan_start_time = #{planStartTime},</if> |
|
214 |
<if test="planEndTime != null">plan_end_time = #{planEndTime},</if> |
|
215 |
<if test="actualStartTime != null">actual_start_time = #{actualStartTime},</if> |
|
216 |
<if test="actualEndTime != null">actual_end_time = #{actualEndTime},</if> |
|
217 |
<if test="serialNumber != null">serial_number = #{serialNumber},</if> |
|
218 |
<if test="orderStatus != null">order_status = #{orderStatus},</if> |
|
219 |
<if test="createTime != null">create_time = #{createTime},</if> |
|
220 |
<if test="updateTime != null">update_time = #{updateTime},</if> |
|
221 |
<if test="createUser != null">create_user = #{createUser},</if> |
|
222 |
<if test="updateUser != null">update_user = #{updateUser},</if> |
|
223 |
<if test="remarks != null">remarks = #{remarks},</if> |
|
224 |
<if test="streamNumber != null">stream_number = #{streamNumber},</if> |
|
225 |
<if test="custom != null">custom = #{custom},</if> |
|
226 |
<if test="marketAreaCode != null">market_area_code = #{marketAreaCode},</if> |
|
227 |
<if test="softwareVersionCode != null">software_version_code = #{softwareVersionCode},</if> |
|
228 |
<if test="productCompanyCode != null">product_company_code = #{productCompanyCode},</if> |
|
229 |
<if test="spareField1 != null">spare_field_1 = #{spareField1},</if> |
|
230 |
<if test="spareField2 != null">spare_field_2 = #{spareField2},</if> |
|
231 |
<if test="spareField3 != null">spare_field_3 = #{spareField3},</if> |
|
232 |
<if test="spareField4 != null">spare_field_4 = #{spareField4},</if> |
648160
|
233 |
<if test="siteCode != null">site_code = #{siteCode},</if> |
H |
234 |
<if test="productNum != null">product_num = #{productNum},</if> |
|
235 |
<if test="stationCode != null">station_code = #{stationCode},</if> |
|
236 |
<if test="resultText != null">result_text = #{resultText},</if> |
|
237 |
<if test="resultCode != null">result_code = #{resultCode},</if> |
|
238 |
<if test="sfResult != null">sf_result = #{sfResult},</if> |
b64ed2
|
239 |
<if test="productModel != null">product_model = #{productModel},</if> |
懒 |
240 |
|
e57a89
|
241 |
</trim> |
懒 |
242 |
where id = #{id} |
|
243 |
</update> |
|
244 |
|
|
245 |
<delete id="deleteOmProductionOrdeInfoById" parameterType="Long"> |
|
246 |
delete from om_production_orde_info where id = #{id} |
|
247 |
</delete> |
|
248 |
|
|
249 |
<delete id="deleteOmProductionOrdeInfoByIds" parameterType="String"> |
|
250 |
delete from om_production_orde_info where id in |
|
251 |
<foreach item="id" collection="array" open="(" separator="," close=")"> |
|
252 |
#{id} |
|
253 |
</foreach> |
|
254 |
</delete> |
|
255 |
|
|
256 |
<select id="getMaxStreamNumber" resultType="Integer"> |
|
257 |
SELECT MAX(stream_number) AS streamNumber FROM om_production_orde_info |
|
258 |
</select> |
|
259 |
</mapper> |