|
@@ -3,97 +3,205 @@
|
3
|
3
|
<mapper namespace="com.unis.module.coding.dal.mysql.dwxx.DwxxMapper">
|
4
|
4
|
|
5
|
5
|
<select id="selectWrapperPage" parameterType="com.unis.module.coding.controller.admin.delivery.vo.DeliveryPageReqVO" resultType="com.unis.module.coding.controller.admin.delivery.vo.DeliveryRespVO">
|
6
|
|
- select
|
7
|
|
- ck.id kqId,
|
8
|
|
- cd.id deptId,
|
9
|
|
- SUBSTRING_INDEX(ck.SHENG, ',', 1) SHENG,
|
10
|
|
- SUBSTRING_INDEX(SUBSTRING_INDEX(ck.SHENG, ',', 2), ',', -1) SHI,
|
11
|
|
- SUBSTRING_INDEX(ck.SHENG, ',', -1) XIAN,
|
12
|
|
- cd.TYXYDM,
|
13
|
|
- cd.DWMC,
|
14
|
|
- ck.KQMC,
|
15
|
|
- TRUNC(ifnull(t1.sjcrNum, 0)) sjcrNum,
|
16
|
|
- ifnull(t1.cfnum, 0) cfnum,
|
17
|
|
- ifnull(t2.yxcfnum, 0) yxcfnum,
|
18
|
|
- ck.xzqhdm
|
19
|
|
- from CODING_DWXX cd
|
20
|
|
- left join coding_kqxx ck on ck.DWID=cd.id
|
21
|
|
- left join
|
22
|
|
- (
|
23
|
|
- select
|
24
|
|
- cf.BASE_KQXX_ID,
|
25
|
|
- sum(cc.SJCR) sjcrNum,
|
26
|
|
- count(cf.BASE_CAXX_ID) cfnum,
|
27
|
|
- ck.xzqhdm
|
28
|
|
- from
|
29
|
|
- CODING_CAXX cc
|
30
|
|
- join CODING_FMXX cf on cc.id=cf.BASE_CAXX_ID
|
31
|
|
- join CODING_KQXX ck on cc.KQID=ck.id
|
32
|
|
- <where>
|
33
|
|
- cf.deleted=0
|
34
|
|
- and cf.lsxz='000'
|
35
|
|
- AND NOT EXISTS (SELECT 1 from DELIVERY_CAXX dc where dc.DELETED=0 AND cc.id=dc.id)
|
36
|
|
- <if test="pageReqVO.cflx!=null and pageReqVO.cflx!=''">
|
37
|
|
- and cc.CFLX=#{pageReqVO.cflx}
|
38
|
|
- </if>
|
39
|
|
- <if test="pageReqVO.cfzt!=null and pageReqVO.cfzt!=''">
|
40
|
|
- and cc.CAZT=#{pageReqVO.cfzt}
|
41
|
|
- </if>
|
42
|
|
- <if test="pageReqVO.cfStart!=null and pageReqVO.cfStart!='' and pageReqVO.cfEnd!=null and pageReqVO.cfEnd!=''">
|
43
|
|
- and cc.SJCR between #{pageReqVO.cfStart} and #{pageReqVO.cfEnd}
|
44
|
|
- </if>
|
45
|
|
- <if test="(pageReqVO.cfStart == null or pageReqVO.cfStart == '') and pageReqVO.cfEnd != null and pageReqVO.cfEnd != ''">
|
46
|
|
- and cc.SJCR <![CDATA[<=]]> #{pageReqVO.cfEnd}
|
47
|
|
- </if>
|
48
|
|
- <if test=" pageReqVO.cfStart!=null and pageReqVO.cfStart!='' and (pageReqVO.cfEnd == null or pageReqVO.cfEnd == '') ">
|
49
|
|
- and cc.SJCR <![CDATA[>=]]> #{pageReqVO.cfStart}
|
50
|
|
- </if>
|
51
|
|
- </where>
|
52
|
|
- group by cf.BASE_KQXX_ID
|
53
|
|
- ) t1 on t1.BASE_KQXX_ID=ck.id
|
54
|
|
- left join
|
55
|
|
- (
|
56
|
|
- select
|
57
|
|
- cc.KQID,
|
58
|
|
- count(cc.id) yxcfnum,
|
59
|
|
- ck.xzqhdm
|
60
|
|
- from DELIVERY_KQXX ck
|
61
|
|
- join DELIVERY_CAXX cc on cc.KQID=ck.id
|
62
|
|
- where cc.yxcf=1 and ck.deleted=0 and cc.deleted=0
|
63
|
|
- group by ck.id
|
64
|
|
- ) t2 on t2.KQID=ck.id
|
65
|
|
- <where>
|
66
|
|
- cd.bz is null
|
67
|
|
- and cd.qyxz!='10'
|
68
|
|
- and cd.DELETED=0
|
69
|
|
- <choose>
|
70
|
|
- <when test=" (pageReqVO.cflx!=null and pageReqVO.cflx!='')
|
71
|
|
- or (pageReqVO.cfzt!=null and pageReqVO.cfzt!='')
|
72
|
|
- or (pageReqVO.cfStart!=null and pageReqVO.cfStart !='')
|
73
|
|
- or (pageReqVO.cfEnd!=null and pageReqVO.cfEnd !='') ">
|
74
|
|
- and t1.cfnum !=0
|
75
|
|
- </when>
|
76
|
|
- <otherwise>
|
77
|
|
- and (t1.cfnum !=0 or t2.yxcfnum !=0)
|
78
|
|
- </otherwise>
|
79
|
|
- </choose>
|
80
|
|
- <if test="pageReqVO.areaCode!=null and pageReqVO.areaCode!=''">
|
81
|
|
- and ck.sheng like #{pageReqVO.areaCode}
|
82
|
|
- </if>
|
83
|
|
- <if test="pageReqVO.kqStart!=null and pageReqVO.kqEnd!=null ">
|
84
|
|
- and IFNULL(t1.sjcrNum, 0)between #{pageReqVO.kqStart} and #{pageReqVO.kqEnd}
|
85
|
|
- </if>
|
86
|
|
- <if test="pageReqVO.kqStart!=null and pageReqVO.kqEnd==null ">
|
87
|
|
- and t1.sjcrNum <![CDATA[>=]]> #{pageReqVO.kqStart}
|
88
|
|
- </if>
|
89
|
|
- <if test="pageReqVO.kqStart==null and pageReqVO.kqEnd!=null ">
|
90
|
|
- and t1.sjcrNum <![CDATA[<=]]> #{pageReqVO.kqEnd}
|
91
|
|
- </if>
|
92
|
|
- <if test="pageReqVO.dwmc!=null and pageReqVO.dwmc!=''">
|
93
|
|
- and cd.DWMC like #{pageReqVO.dwmc}
|
94
|
|
- </if>
|
95
|
|
- </where>
|
96
|
|
- order by cd.id desc
|
|
6
|
+ SELECT
|
|
7
|
+ cfxx.kqId,
|
|
8
|
+ cfxx.deptId,
|
|
9
|
+ cfxx.sheng sheng,
|
|
10
|
+ cfxx.shi shi,
|
|
11
|
+ cfxx.xian xian,
|
|
12
|
+ cfxx.TYXYDM,
|
|
13
|
+ cfxx.DWMC,
|
|
14
|
+ cfxx.KQMC,
|
|
15
|
+ SUM(cfxx.sjcrNum) sjcrNum,
|
|
16
|
+ SUM(cfxx.cfnum) cfnum,
|
|
17
|
+ SUM(cfxx.yxcfnum) yxcfnum,
|
|
18
|
+ cfxx.xzqhdm
|
|
19
|
+ FROM
|
|
20
|
+ (
|
|
21
|
+ select
|
|
22
|
+ ck.id kqId,
|
|
23
|
+ cd.id deptId,
|
|
24
|
+ SUBSTRING_INDEX(ck.SHENG, ',', 1) SHENG,
|
|
25
|
+ SUBSTRING_INDEX(SUBSTRING_INDEX(ck.SHENG, ',', 2), ',', -1) SHI,
|
|
26
|
+ SUBSTRING_INDEX(ck.SHENG, ',', -1) XIAN,
|
|
27
|
+ cd.TYXYDM,
|
|
28
|
+ cd.DWMC,
|
|
29
|
+ ck.KQMC,
|
|
30
|
+ TRUNC(ifnull(t1.sjcrNum, 0)) sjcrNum,
|
|
31
|
+ ifnull(t1.cfnum, 0) cfnum,
|
|
32
|
+ ifnull(t2.yxcfnum, 0) yxcfnum,
|
|
33
|
+ ck.xzqhdm
|
|
34
|
+ from CODING_DWXX cd
|
|
35
|
+ left join coding_kqxx ck on ck.DWID=cd.id
|
|
36
|
+ left join
|
|
37
|
+ (
|
|
38
|
+ select
|
|
39
|
+ cf.BASE_KQXX_ID,
|
|
40
|
+ sum(cc.SJCR) sjcrNum,
|
|
41
|
+ count(cf.BASE_CAXX_ID) cfnum,
|
|
42
|
+ ck.xzqhdm
|
|
43
|
+ from
|
|
44
|
+ CODING_CAXX cc
|
|
45
|
+ join CODING_FMXX cf on cc.id=cf.BASE_CAXX_ID
|
|
46
|
+ join CODING_KQXX ck on cc.KQID=ck.id
|
|
47
|
+ <where>
|
|
48
|
+ cf.deleted=0
|
|
49
|
+ and cf.lsxz='000'
|
|
50
|
+ AND NOT EXISTS (SELECT 1 from DELIVERY_CAXX dc where dc.DELETED=0 AND cc.id=dc.id)
|
|
51
|
+ <if test="pageReqVO.cflx!=null and pageReqVO.cflx!=''">
|
|
52
|
+ and cc.CFLX=#{pageReqVO.cflx}
|
|
53
|
+ </if>
|
|
54
|
+ <if test="pageReqVO.cfzt!=null and pageReqVO.cfzt!=''">
|
|
55
|
+ and cc.CAZT=#{pageReqVO.cfzt}
|
|
56
|
+ </if>
|
|
57
|
+ <if test="pageReqVO.cfStart!=null and pageReqVO.cfStart!='' and pageReqVO.cfEnd!=null and pageReqVO.cfEnd!=''">
|
|
58
|
+ and cc.SJCR between #{pageReqVO.cfStart} and #{pageReqVO.cfEnd}
|
|
59
|
+ </if>
|
|
60
|
+ <if test="(pageReqVO.cfStart == null or pageReqVO.cfStart == '') and pageReqVO.cfEnd != null and pageReqVO.cfEnd != ''">
|
|
61
|
+ and cc.SJCR <![CDATA[<=]]> #{pageReqVO.cfEnd}
|
|
62
|
+ </if>
|
|
63
|
+ <if test=" pageReqVO.cfStart!=null and pageReqVO.cfStart!='' and (pageReqVO.cfEnd == null or pageReqVO.cfEnd == '') ">
|
|
64
|
+ and cc.SJCR <![CDATA[>=]]> #{pageReqVO.cfStart}
|
|
65
|
+ </if>
|
|
66
|
+ </where>
|
|
67
|
+ group by cf.BASE_KQXX_ID
|
|
68
|
+ ) t1 on t1.BASE_KQXX_ID=ck.id
|
|
69
|
+ left join
|
|
70
|
+ (
|
|
71
|
+ select
|
|
72
|
+ cc.KQID,
|
|
73
|
+ count(cc.id) yxcfnum,
|
|
74
|
+ ck.xzqhdm
|
|
75
|
+ from DELIVERY_KQXX ck
|
|
76
|
+ join DELIVERY_CAXX cc on cc.KQID=ck.id
|
|
77
|
+ where cc.yxcf=1 and ck.deleted=0 and cc.deleted=0
|
|
78
|
+ group by ck.id
|
|
79
|
+ ) t2 on t2.KQID=ck.id
|
|
80
|
+ <where>
|
|
81
|
+ cd.bz is null
|
|
82
|
+ and cd.qyxz!='10'
|
|
83
|
+ and cd.DELETED=0
|
|
84
|
+ <choose>
|
|
85
|
+ <when test=" (pageReqVO.cflx!=null and pageReqVO.cflx!='')
|
|
86
|
+ or (pageReqVO.cfzt!=null and pageReqVO.cfzt!='')
|
|
87
|
+ or (pageReqVO.cfStart!=null and pageReqVO.cfStart !='')
|
|
88
|
+ or (pageReqVO.cfEnd!=null and pageReqVO.cfEnd !='') ">
|
|
89
|
+ and t1.cfnum !=0
|
|
90
|
+ </when>
|
|
91
|
+ <otherwise>
|
|
92
|
+ and (t1.cfnum !=0 or t2.yxcfnum !=0)
|
|
93
|
+ </otherwise>
|
|
94
|
+ </choose>
|
|
95
|
+ <if test="pageReqVO.areaCode!=null and pageReqVO.areaCode!=''">
|
|
96
|
+ and ck.sheng like #{pageReqVO.areaCode}
|
|
97
|
+ </if>
|
|
98
|
+ <if test="pageReqVO.kqStart!=null and pageReqVO.kqEnd!=null ">
|
|
99
|
+ and IFNULL(t1.sjcrNum, 0)between #{pageReqVO.kqStart} and #{pageReqVO.kqEnd}
|
|
100
|
+ </if>
|
|
101
|
+ <if test="pageReqVO.kqStart!=null and pageReqVO.kqEnd==null ">
|
|
102
|
+ and t1.sjcrNum <![CDATA[>=]]> #{pageReqVO.kqStart}
|
|
103
|
+ </if>
|
|
104
|
+ <if test="pageReqVO.kqStart==null and pageReqVO.kqEnd!=null ">
|
|
105
|
+ and t1.sjcrNum <![CDATA[<=]]> #{pageReqVO.kqEnd}
|
|
106
|
+ </if>
|
|
107
|
+ <if test="pageReqVO.dwmc!=null and pageReqVO.dwmc!=''">
|
|
108
|
+ and cd.DWMC like #{pageReqVO.dwmc}
|
|
109
|
+ </if>
|
|
110
|
+ </where>
|
|
111
|
+ UNION ALL
|
|
112
|
+ SELECT
|
|
113
|
+ kq.id kqId,
|
|
114
|
+ dw.ID deptId,
|
|
115
|
+ kq.sheng_name sheng,
|
|
116
|
+ kq.shi_name shi,
|
|
117
|
+ kq.xian_name xian,
|
|
118
|
+ dw.TYXYDM,
|
|
119
|
+ dw.DWMC,
|
|
120
|
+ kq.KQMC,
|
|
121
|
+ TRUNC(IFNULL(t1.sjcrNum, 0)) sjcrNum,
|
|
122
|
+ IFNULL(t1.cfnum, 0) cfnum,
|
|
123
|
+ IFNULL(t2.yxcfnum, 0) yxcfnum,
|
|
124
|
+ IFNULL(kq.XIAN,IFNULL(kq.SHI,kq.SHENG)) xzqhdm
|
|
125
|
+ FROM
|
|
126
|
+ DELIVERY_KQXX kq
|
|
127
|
+ LEFT JOIN DELIVERY_DWXX dw ON kq.DWID = dw.ID
|
|
128
|
+ LEFT JOIN
|
|
129
|
+ (
|
|
130
|
+ select
|
|
131
|
+ cf.KQID,
|
|
132
|
+ sum(cf.SJCR) sjcrNum,
|
|
133
|
+ count(cf.id) cfnum
|
|
134
|
+ from
|
|
135
|
+ DELIVERY_CAXX cf
|
|
136
|
+ <where>
|
|
137
|
+ cf.deleted=0 AND cf.yxcf = 0 AND cf.SJLY = 0
|
|
138
|
+ <if test="pageReqVO.cflx!=null and pageReqVO.cflx!=''">
|
|
139
|
+ and cf.CFLX=#{pageReqVO.cflx}
|
|
140
|
+ </if>
|
|
141
|
+ <if test="pageReqVO.cfzt!=null and pageReqVO.cfzt!=''">
|
|
142
|
+ and cf.CAZT=#{pageReqVO.cfzt}
|
|
143
|
+ </if>
|
|
144
|
+ <if test="pageReqVO.cfStart!=null and pageReqVO.cfStart!='' and pageReqVO.cfEnd!=null and pageReqVO.cfEnd!=''">
|
|
145
|
+ and cf.SJCR between #{pageReqVO.cfStart} and #{pageReqVO.cfEnd}
|
|
146
|
+ </if>
|
|
147
|
+ <if test="(pageReqVO.cfStart == null or pageReqVO.cfStart == '') and pageReqVO.cfEnd != null and pageReqVO.cfEnd != ''">
|
|
148
|
+ and cf.SJCR <![CDATA[<=]]> #{pageReqVO.cfEnd}
|
|
149
|
+ </if>
|
|
150
|
+ <if test=" pageReqVO.cfStart!=null and pageReqVO.cfStart!='' and (pageReqVO.cfEnd == null or pageReqVO.cfEnd == '') ">
|
|
151
|
+ and cf.SJCR <![CDATA[>=]]> #{pageReqVO.cfStart}
|
|
152
|
+ </if>
|
|
153
|
+ </where>
|
|
154
|
+ group by cf.KQID
|
|
155
|
+ ) t1 on t1.KQID=kq.id
|
|
156
|
+ LEFT JOIN
|
|
157
|
+ (
|
|
158
|
+ select
|
|
159
|
+ cf.KQID,
|
|
160
|
+ count(cf.id) yxcfnum
|
|
161
|
+ from DELIVERY_CAXX cf
|
|
162
|
+ where cf.yxcf=1 AND cf.deleted=0 AND cf.SJLY = 0
|
|
163
|
+ group by cf.KQID
|
|
164
|
+ ) t2 on t2.KQID=kq.id
|
|
165
|
+ <where>
|
|
166
|
+ kq.SJLY = 0
|
|
167
|
+ and dw.qyxz!='10'
|
|
168
|
+ and dw.DELETED=0
|
|
169
|
+ <choose>
|
|
170
|
+ <when test=" (pageReqVO.cflx!=null and pageReqVO.cflx!='')
|
|
171
|
+ or (pageReqVO.cfzt!=null and pageReqVO.cfzt!='')
|
|
172
|
+ or (pageReqVO.cfStart!=null and pageReqVO.cfStart !='')
|
|
173
|
+ or (pageReqVO.cfEnd!=null and pageReqVO.cfEnd !='') ">
|
|
174
|
+ and t1.cfnum !=0
|
|
175
|
+ </when>
|
|
176
|
+ <otherwise>
|
|
177
|
+ and (t1.cfnum !=0 or t2.yxcfnum !=0)
|
|
178
|
+ </otherwise>
|
|
179
|
+ </choose>
|
|
180
|
+ <if test="pageReqVO.areaShi!=null and pageReqVO.areaShi!=''">
|
|
181
|
+ and kq.SHI = #{pageReqVO.areaShi}
|
|
182
|
+ </if>
|
|
183
|
+ <if test="pageReqVO.areaSheng!=null and pageReqVO.areaSheng!=''">
|
|
184
|
+ and kq.SHENG = #{pageReqVO.areaSheng}
|
|
185
|
+ </if>
|
|
186
|
+ <if test="pageReqVO.areaXian!=null and pageReqVO.areaXian!=''">
|
|
187
|
+ and kq.XIAN = #{pageReqVO.areaXian}
|
|
188
|
+ </if>
|
|
189
|
+ <if test="pageReqVO.kqStart!=null and pageReqVO.kqEnd!=null ">
|
|
190
|
+ and IFNULL(t1.sjcrNum, 0)between #{pageReqVO.kqStart} and #{pageReqVO.kqEnd}
|
|
191
|
+ </if>
|
|
192
|
+ <if test="pageReqVO.kqStart!=null and pageReqVO.kqEnd==null ">
|
|
193
|
+ and t1.sjcrNum <![CDATA[>=]]> #{pageReqVO.kqStart}
|
|
194
|
+ </if>
|
|
195
|
+ <if test="pageReqVO.kqStart==null and pageReqVO.kqEnd!=null ">
|
|
196
|
+ and t1.sjcrNum <![CDATA[<=]]> #{pageReqVO.kqEnd}
|
|
197
|
+ </if>
|
|
198
|
+ <if test="pageReqVO.dwmc!=null and pageReqVO.dwmc!=''">
|
|
199
|
+ and dw.DWMC like #{pageReqVO.dwmc}
|
|
200
|
+ </if>
|
|
201
|
+ </where>
|
|
202
|
+ ) cfxx
|
|
203
|
+ group by cfxx.kqId
|
|
204
|
+ order by cfxx.deptId desc
|
97
|
205
|
</select>
|
98
|
206
|
|
99
|
207
|
<select id="selectWrapperPageForSheng" parameterType="com.unis.module.coding.controller.admin.delivery.vo.DeliveryPageReqVO" resultType="com.unis.module.coding.controller.admin.delivery.vo.DeliveryRespVO">
|
|
@@ -342,6 +450,78 @@
|
342
|
450
|
DELETE FROM DELIVERY_DWXX where id = #{id}
|
343
|
451
|
</delete>
|
344
|
452
|
|
|
453
|
+ <select id="getDwAndKq" resultMap="DwAndKqResultMap">
|
|
454
|
+ SELECT
|
|
455
|
+ dw.id,
|
|
456
|
+ dw.dwmc,
|
|
457
|
+ dw.tyxydm,
|
|
458
|
+ dw.fddbr,
|
|
459
|
+ dw.sfzh,
|
|
460
|
+ dw.lxfs,
|
|
461
|
+ dw.zcrq,
|
|
462
|
+ dw.yzbm,
|
|
463
|
+ dw.zcdz,
|
|
464
|
+ dw.qyxz,
|
|
465
|
+ dw.resid license,
|
|
466
|
+ kq.id kqId,
|
|
467
|
+ kq.KQMC,
|
|
468
|
+ kq.KQDM,
|
|
469
|
+ kq.YZBM,
|
|
470
|
+ kq.SHENG,
|
|
471
|
+ kq.SHI,
|
|
472
|
+ kq.XIAN,
|
|
473
|
+ kq.SHENG_NAME,
|
|
474
|
+ kq.SHI_NAME,
|
|
475
|
+ kq.XIAN_NAME,
|
|
476
|
+ kq.JTDZ,
|
|
477
|
+ kq.KQFZR,
|
|
478
|
+ kq.LXDH,
|
|
479
|
+ kq.ZDMJ,
|
|
480
|
+ kq.zcckj,
|
|
481
|
+ kq.wtbgckj,
|
|
482
|
+ kq.JD,
|
|
483
|
+ kq.WD,
|
|
484
|
+ kq.RESID
|
|
485
|
+ from
|
|
486
|
+ DELIVERY_DWXX dw
|
|
487
|
+ LEFT JOIN DELIVERY_KQXX kq on kq.DWID = dw.ID
|
|
488
|
+ WHERE dw.tyxydm = #{tyxydm}
|
|
489
|
+ </select>
|
345
|
490
|
|
|
491
|
+ <resultMap id="DwAndKqResultMap" type="com.unis.module.coding.controller.admin.dwxx.vo.DwAndKqRespVO">
|
|
492
|
+ <id property="id" column="id"/>
|
|
493
|
+ <result property="dwmc" column="dwmc"/>
|
|
494
|
+ <result property="tyxydm" column="tyxydm"/>
|
|
495
|
+ <result property="fddbr" column="fddbr"/>
|
|
496
|
+ <result property="sfzh" column="sfzh"/>
|
|
497
|
+ <result property="lxfs" column="lxfs"/>
|
|
498
|
+ <result property="zcrq" column="zcrq"/>
|
|
499
|
+ <result property="yzbm" column="yzbm"/>
|
|
500
|
+ <result property="zcdz" column="zcdz"/>
|
|
501
|
+ <result property="qyxz" column="qyxz"/>
|
|
502
|
+ <result property="license" column="license"/>
|
|
503
|
+ <collection property="kqList" ofType="com.unis.module.coding.controller.admin.dwxx.vo.DwAndKqRespVO$Kq">
|
|
504
|
+ <id property="kqId" column="kqId"/>
|
|
505
|
+ <result property="kqmc" column="kqmc"/>
|
|
506
|
+ <result property="kqdm" column="kqdm"/>
|
|
507
|
+ <result property="yzbm" column="yzbm"/>
|
|
508
|
+ <result property="sheng" column="sheng"/>
|
|
509
|
+ <result property="shi" column="shi"/>
|
|
510
|
+ <result property="xian" column="xian"/>
|
|
511
|
+ <result property="shengName" column="sheng_name"/>
|
|
512
|
+ <result property="shiName" column="shi_name"/>
|
|
513
|
+ <result property="xianName" column="xian_name"/>
|
|
514
|
+ <result property="jtdz" column="jtdz"/>
|
|
515
|
+ <result property="kqfzr" column="kqfzr"/>
|
|
516
|
+ <result property="lxdh" column="lxdh"/>
|
|
517
|
+ <result property="zdmj" column="zdmj"/>
|
|
518
|
+ <result property="kqzt" column="kqzt"/>
|
|
519
|
+ <result property="zcckj" column="zcckj"/>
|
|
520
|
+ <result property="wtbgckj" column="wtbgckj"/>
|
|
521
|
+ <result property="jd" column="jd"/>
|
|
522
|
+ <result property="wd" column="wd"/>
|
|
523
|
+ <result property="resid" column="resid"/>
|
|
524
|
+ </collection>
|
|
525
|
+ </resultMap>
|
346
|
526
|
|
347
|
527
|
</mapper>
|