提交 | 用户 | 时间
|
fd2207
|
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.da.passingStationCollection.mapper.DaPassingStationCollectionMapper"> |
|
6 |
|
|
7 |
<resultMap type="DaPassingStationCollection" id="DaPassingStationCollectionResult"> |
|
8 |
<result property="id" column="id" /> |
|
9 |
<result property="workOrderNo" column="work_order_no" /> |
|
10 |
<result property="sfcCode" column="sfc_code" /> |
|
11 |
<result property="productCode" column="product_code" /> |
|
12 |
<result property="productionLine" column="production_line" /> |
|
13 |
<result property="locationCode" column="location_code" /> |
|
14 |
<result property="equipmentNo" column="equipment_no" /> |
|
15 |
<result property="inboundTime" column="inbound_time" /> |
|
16 |
<result property="outboundTime" column="outbound_time" /> |
|
17 |
<result property="inRsSign" column="in_rs_sign" /> |
|
18 |
<result property="inMsgSign" column="in_msg_sign" /> |
|
19 |
<result property="outRsSign" column="out_rs_sign" /> |
|
20 |
<result property="outMsgSign" column="out_msg_sign" /> |
|
21 |
<result property="collectionTime" column="collection_time" /> |
|
22 |
<result property="spareField1" column="spare_field_1" /> |
|
23 |
<result property="spareField2" column="spare_field_2" /> |
|
24 |
<result property="createUser" column="create_user" /> |
|
25 |
<result property="createTime" column="create_time" /> |
|
26 |
<result property="updateUser" column="update_user" /> |
|
27 |
<result property="updateTime" column="update_time" /> |
|
28 |
<result property="beatTime" column="beat_time" /> |
8aafc5
|
29 |
<result property="repairFlag" column="repair_flag" /> |
fd2207
|
30 |
</resultMap> |
懒 |
31 |
|
|
32 |
<sql id="selectDaPassingStationCollectionVo"> |
8aafc5
|
33 |
select id, work_order_no, sfc_code, product_code, production_line, location_code, equipment_no, inbound_time, outbound_time, in_rs_sign, in_msg_sign, out_rs_sign, out_msg_sign, collection_time, spare_field_1, spare_field_2, create_user, create_time, update_user, update_time, beat_time, repair_flag from da_passing_station_collection |
fd2207
|
34 |
</sql> |
懒 |
35 |
|
|
36 |
<select id="selectDaPassingStationCollectionList" parameterType="DaPassingStationCollection" resultMap="DaPassingStationCollectionResult"> |
|
37 |
<include refid="selectDaPassingStationCollectionVo"/> |
|
38 |
<where> |
|
39 |
<if test="workOrderNo != null and workOrderNo != ''"> and work_order_no = #{workOrderNo}</if> |
|
40 |
<if test="sfcCode != null and sfcCode != ''"> and sfc_code = #{sfcCode}</if> |
|
41 |
<if test="productCode != null and productCode != ''"> and product_code = #{productCode}</if> |
|
42 |
<if test="productionLine != null and productionLine != ''"> and production_line = #{productionLine}</if> |
|
43 |
<if test="locationCode != null and locationCode != ''"> and location_code = #{locationCode}</if> |
|
44 |
<if test="equipmentNo != null and equipmentNo != ''"> and equipment_no = #{equipmentNo}</if> |
|
45 |
<if test="inboundTime != null "> and inbound_time = #{inboundTime}</if> |
|
46 |
<if test="outboundTime != null "> and outbound_time = #{outboundTime}</if> |
ff985a
|
47 |
<if test="outRsSign != null "> and out_rs_sign = #{outRsSign}</if> |
懒 |
48 |
<if test="outRsSign != null "> and out_rs_sign = #{outRsSign}</if> |
020295
|
49 |
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''"> and outbound_time between #{startTime} and #{endTime}</if> |
fd2207
|
50 |
</where> |
懒 |
51 |
</select> |
|
52 |
|
|
53 |
<select id="selectDaPassingStationCollectionById" parameterType="Long" resultMap="DaPassingStationCollectionResult"> |
|
54 |
<include refid="selectDaPassingStationCollectionVo"/> |
|
55 |
where id = #{id} |
|
56 |
</select> |
c74dcb
|
57 |
<select id="getListBySfcCode" |
W |
58 |
resultMap="DaPassingStationCollectionResult"> |
|
59 |
<include refid="selectDaPassingStationCollectionVo"/> |
|
60 |
where sfc_code in |
|
61 |
<foreach collection="engineNoList" open="(" close=")" item="code" separator=","> |
|
62 |
#{code} |
|
63 |
</foreach> |
|
64 |
</select> |
|
65 |
|
fd2207
|
66 |
<insert id="insertDaPassingStationCollection" parameterType="DaPassingStationCollection"> |
懒 |
67 |
insert into da_passing_station_collection |
|
68 |
<trim prefix="(" suffix=")" suffixOverrides=","> |
|
69 |
<if test="id != null">id,</if> |
|
70 |
<if test="workOrderNo != null">work_order_no,</if> |
|
71 |
<if test="sfcCode != null">sfc_code,</if> |
|
72 |
<if test="productCode != null">product_code,</if> |
|
73 |
<if test="productionLine != null">production_line,</if> |
|
74 |
<if test="locationCode != null">location_code,</if> |
|
75 |
<if test="equipmentNo != null">equipment_no,</if> |
|
76 |
<if test="inboundTime != null">inbound_time,</if> |
|
77 |
<if test="outboundTime != null">outbound_time,</if> |
|
78 |
<if test="inRsSign != null">in_rs_sign,</if> |
|
79 |
<if test="inMsgSign != null">in_msg_sign,</if> |
|
80 |
<if test="outRsSign != null">out_rs_sign,</if> |
|
81 |
<if test="outMsgSign != null">out_msg_sign,</if> |
|
82 |
<if test="collectionTime != null">collection_time,</if> |
|
83 |
<if test="spareField1 != null">spare_field_1,</if> |
|
84 |
<if test="spareField2 != null">spare_field_2,</if> |
|
85 |
<if test="createUser != null">create_user,</if> |
|
86 |
<if test="createTime != null">create_time,</if> |
|
87 |
<if test="updateUser != null">update_user,</if> |
|
88 |
<if test="updateTime != null">update_time,</if> |
|
89 |
<if test="beatTime != null">beat_time,</if> |
|
90 |
</trim> |
|
91 |
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|
92 |
<if test="id != null">#{id},</if> |
|
93 |
<if test="workOrderNo != null">#{workOrderNo},</if> |
|
94 |
<if test="sfcCode != null">#{sfcCode},</if> |
|
95 |
<if test="productCode != null">#{productCode},</if> |
|
96 |
<if test="productionLine != null">#{productionLine},</if> |
|
97 |
<if test="locationCode != null">#{locationCode},</if> |
|
98 |
<if test="equipmentNo != null">#{equipmentNo},</if> |
|
99 |
<if test="inboundTime != null">#{inboundTime},</if> |
|
100 |
<if test="outboundTime != null">#{outboundTime},</if> |
|
101 |
<if test="inRsSign != null">#{inRsSign},</if> |
|
102 |
<if test="inMsgSign != null">#{inMsgSign},</if> |
|
103 |
<if test="outRsSign != null">#{outRsSign},</if> |
|
104 |
<if test="outMsgSign != null">#{outMsgSign},</if> |
|
105 |
<if test="collectionTime != null">#{collectionTime},</if> |
|
106 |
<if test="spareField1 != null">#{spareField1},</if> |
|
107 |
<if test="spareField2 != null">#{spareField2},</if> |
|
108 |
<if test="createUser != null">#{createUser},</if> |
|
109 |
<if test="createTime != null">#{createTime},</if> |
|
110 |
<if test="updateUser != null">#{updateUser},</if> |
|
111 |
<if test="updateTime != null">#{updateTime},</if> |
|
112 |
<if test="beatTime != null">#{beatTime},</if> |
|
113 |
</trim> |
|
114 |
</insert> |
|
115 |
|
|
116 |
<update id="updateDaPassingStationCollection" parameterType="DaPassingStationCollection"> |
|
117 |
update da_passing_station_collection |
|
118 |
<trim prefix="SET" suffixOverrides=","> |
|
119 |
<if test="workOrderNo != null">work_order_no = #{workOrderNo},</if> |
|
120 |
<if test="sfcCode != null">sfc_code = #{sfcCode},</if> |
|
121 |
<if test="productCode != null">product_code = #{productCode},</if> |
|
122 |
<if test="productionLine != null">production_line = #{productionLine},</if> |
|
123 |
<if test="locationCode != null">location_code = #{locationCode},</if> |
|
124 |
<if test="equipmentNo != null">equipment_no = #{equipmentNo},</if> |
|
125 |
<if test="inboundTime != null">inbound_time = #{inboundTime},</if> |
|
126 |
<if test="outboundTime != null">outbound_time = #{outboundTime},</if> |
|
127 |
<if test="inRsSign != null">in_rs_sign = #{inRsSign},</if> |
|
128 |
<if test="inMsgSign != null">in_msg_sign = #{inMsgSign},</if> |
|
129 |
<if test="outRsSign != null">out_rs_sign = #{outRsSign},</if> |
|
130 |
<if test="outMsgSign != null">out_msg_sign = #{outMsgSign},</if> |
|
131 |
<if test="collectionTime != null">collection_time = #{collectionTime},</if> |
|
132 |
<if test="spareField1 != null">spare_field_1 = #{spareField1},</if> |
|
133 |
<if test="spareField2 != null">spare_field_2 = #{spareField2},</if> |
|
134 |
<if test="createUser != null">create_user = #{createUser},</if> |
|
135 |
<if test="createTime != null">create_time = #{createTime},</if> |
|
136 |
<if test="updateUser != null">update_user = #{updateUser},</if> |
|
137 |
<if test="updateTime != null">update_time = #{updateTime},</if> |
|
138 |
<if test="beatTime != null">beat_time = #{beatTime},</if> |
|
139 |
</trim> |
|
140 |
where id = #{id} |
|
141 |
</update> |
|
142 |
|
|
143 |
<delete id="deleteDaPassingStationCollectionById" parameterType="Long"> |
|
144 |
delete from da_passing_station_collection where id = #{id} |
|
145 |
</delete> |
|
146 |
|
|
147 |
<delete id="deleteDaPassingStationCollectionByIds" parameterType="String"> |
|
148 |
delete from da_passing_station_collection where id in |
|
149 |
<foreach item="id" collection="array" open="(" separator="," close=")"> |
|
150 |
#{id} |
|
151 |
</foreach> |
|
152 |
</delete> |
|
153 |
</mapper> |