GatherinfoDao.xml
4.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.thinkgem.jeesite.modules.bw.dao.dct.GatherinfoDao">
<sql id="gatherinfoColumns">
a.areaid AS "areaid",
a.chnlno AS "chnlno",
a.ietype AS "ietype",
a.seqno AS "seqno",
a.dricno AS "dricno",
a.icdrcustomsno AS "icdrcustomsno",
a.iccocustomsno AS "iccocustomsno",
a.icbillno AS "icbillno",
a.icgrosswt AS "icgrosswt",
a.icvecustomsno AS "icvecustomsno",
a.icvename AS "icvename",
a.iccontaid AS "iccontaid",
a.icesealid AS "icesealid",
a.icbusstype AS "icbusstype",
a.icexdata AS "icexdata",
a.grosswt AS "grosswt",
a.vename AS "vename",
a.carecno AS "carecno",
a.carecno2 AS "carecno2",
a.vecustomsno AS "vecustomsno",
a.vewt AS "vewt",
a.trecno AS "trecno",
a.trname AS "trname",
a.trwt AS "trwt",
a.contanum AS "contanum",
a.contareco AS "contareco",
a.contaidf AS "contaidf",
a.contaidb AS "contaidb",
a.contamodelf AS "contamodelf",
a.contamodelb AS "contamodelb",
a.barcode AS "barcode",
a.esealid AS "esealid",
a.esealicno AS "esealicno"
</sql>
<sql id="gatherinfoJoins">
</sql>
<select id="get" resultType="Gatherinfo">
SELECT
<include refid="gatherinfoColumns"/>
FROM gatherinfo a
<include refid="gatherinfoJoins"/>
WHERE a.id = #{id}
</select>
<select id="findList" resultType="Gatherinfo">
SELECT
<include refid="gatherinfoColumns"/>
FROM gatherinfo a
<include refid="gatherinfoJoins"/>
<where>
</where>
<choose>
<when test="page !=null and page.orderBy != null and page.orderBy != ''">
ORDER BY ${page.orderBy}
</when>
<otherwise>
</otherwise>
</choose>
</select>
<select id="findAllList" resultType="Gatherinfo">
SELECT
<include refid="gatherinfoColumns"/>
FROM gatherinfo a
<include refid="gatherinfoJoins"/>
<where>
</where>
<choose>
<when test="page !=null and page.orderBy != null and page.orderBy != ''">
ORDER BY ${page.orderBy}
</when>
<otherwise>
</otherwise>
</choose>
</select>
<insert id="insert">
INSERT INTO gatherinfo(
areaid,
chnlno,
ietype,
seqno,
dricno,
icdrcustomsno,
iccocustomsno,
icbillno,
icgrosswt,
icvecustomsno,
icvename,
iccontaid,
icesealid,
icbusstype,
icexdata,
grosswt,
vename,
carecno,
carecno2,
vecustomsno,
vewt,
trecno,
trname,
trwt,
contanum,
contareco,
contaidf,
contaidb,
contamodelf,
contamodelb,
barcode,
esealid,
esealicno
) VALUES (
#{areaid},
#{chnlno},
#{ietype},
#{seqno},
#{dricno},
#{icdrcustomsno},
#{iccocustomsno},
#{icbillno},
#{icgrosswt},
#{icvecustomsno},
#{icvename},
#{iccontaid},
#{icesealid},
#{icbusstype},
#{icexdata},
#{grosswt},
#{vename},
#{carecno},
#{carecno2},
#{vecustomsno},
#{vewt},
#{trecno},
#{trname},
#{trwt},
#{contanum},
#{contareco},
#{contaidf},
#{contaidb},
#{contamodelf},
#{contamodelb},
#{barcode},
#{esealid},
#{esealicno}
)
</insert>
<update id="update">
UPDATE gatherinfo SET
areaid = #{areaid},
chnlno = #{chnlno},
ietype = #{ietype},
seqno = #{seqno},
dricno = #{dricno},
icdrcustomsno = #{icdrcustomsno},
iccocustomsno = #{iccocustomsno},
icbillno = #{icbillno},
icgrosswt = #{icgrosswt},
icvecustomsno = #{icvecustomsno},
icvename = #{icvename},
iccontaid = #{iccontaid},
icesealid = #{icesealid},
icbusstype = #{icbusstype},
icexdata = #{icexdata},
grosswt = #{grosswt},
vename = #{vename},
carecno = #{carecno},
carecno2 = #{carecno2},
vecustomsno = #{vecustomsno},
vewt = #{vewt},
trecno = #{trecno},
trname = #{trname},
trwt = #{trwt},
contanum = #{contanum},
contareco = #{contareco},
contaidf = #{contaidf},
contaidb = #{contaidb},
contamodelf = #{contamodelf},
contamodelb = #{contamodelb},
barcode = #{barcode},
esealid = #{esealid},
esealicno = #{esealicno}
WHERE id = #{id}
</update>
<update id="delete">
DELETE FROM gatherinfo
WHERE id = #{id}
</update>
</mapper>