Sfoglia il codice sorgente

Merge remote-tracking branch 'origin/master'

aihua 3 anni fa
parent
commit
00eb051eaf

+ 42 - 0
src/main/java/com/chinaitop/depot/fumigation/controller/FumigationForRecordController.java

@@ -9,6 +9,7 @@ import com.chinaitop.depot.fumigation.service.PesticidePlanService;
9 9
 import com.chinaitop.depot.utils.HttpUtil;
10 10
 import com.chinaitop.depot.utils.JsonToObjectUtils;
11 11
 import com.chinaitop.depot.utils.ParameterUtil;
12
+import com.fasterxml.jackson.databind.JavaType;
12 13
 import com.fasterxml.jackson.databind.ObjectMapper;
13 14
 import com.github.pagehelper.PageHelper;
14 15
 import com.github.pagehelper.PageInfo;
@@ -18,6 +19,7 @@ import io.swagger.annotations.ApiImplicitParams;
18 19
 import io.swagger.annotations.ApiOperation;
19 20
 import org.springframework.beans.factory.annotation.Value;
20 21
 import org.springframework.http.MediaType;
22
+import org.springframework.util.CollectionUtils;
21 23
 import org.springframework.web.bind.annotation.RequestMapping;
22 24
 import org.springframework.web.bind.annotation.RequestMethod;
23 25
 import org.springframework.web.bind.annotation.RestController;
@@ -405,4 +407,44 @@ public class FumigationForRecordController {
405 407
             }
406 408
         }
407 409
     }
410
+
411
+    /**
412
+     * 保存熏蒸备案信息
413
+     * @param forrecordId 主键id
414
+     * @return
415
+     * @throws Exception
416
+     */
417
+    @RequestMapping(value="/insertRecord", produces = MediaType.APPLICATION_JSON_VALUE, method = RequestMethod.POST)
418
+    @ApiOperation(value="保存熏蒸信息及备案信息", notes = "保存熏蒸信息及备案信息-市级用")
419
+    @ApiImplicitParams({
420
+            @ApiImplicitParam(name = "forRecord", value = "主键id", paramType = "form")
421
+    })
422
+    public void insertRecord(String forRecord) throws Exception {
423
+        //市级传输过来的审批过后的备案数据
424
+        Map<String, Object> modelMap = new HashMap<>();
425
+        // JSON字符串转对象
426
+        ObjectMapper mapper = new ObjectMapper();
427
+        JavaType javaType = mapper.getTypeFactory().constructParametricType(ArrayList.class,TFumigationForrecord.class);
428
+        List<TFumigationForrecord> tFumigationForrecordList = mapper.readValue(forRecord, javaType);
429
+        if(!CollectionUtils.isEmpty(tFumigationForrecordList)){
430
+            for (TFumigationForrecord tFumigationForrecord : tFumigationForrecordList) {
431
+                String uuid = ParameterUtil.getCode();
432
+                tFumigationForrecord.setId(uuid);
433
+                tFumigationForrecord.setState(8);
434
+                tFumigationForrecord.setCreateTime(new Date());
435
+                fumigationFroRecordService.add(tFumigationForrecord);
436
+                if(CollectionUtils.isEmpty(tFumigationForrecord.getFumigationPersonnelList())){
437
+                    for (TFumigationPersonnel tFumigationPersonne : tFumigationForrecord.getFumigationPersonnelList()) {
438
+                        tFumigationPersonne.setDeleteState("1");//默认设置删除标志
439
+                        tFumigationPersonne.setCreateTime(new Date());//创建时间
440
+                        tFumigationPersonne.setId(ParameterUtil.getCode());
441
+                        tFumigationPersonne.setForrecordId(uuid);
442
+                        tFumigationPersonne.setOrgId(tFumigationForrecord.getOrgId());
443
+                        fumigationFroRecordService.addPersonnel(tFumigationPersonne);
444
+                    }
445
+
446
+                }
447
+            }
448
+        }
449
+    }
408 450
 }

+ 758 - 5
src/main/java/com/chinaitop/depot/fumigation/mapper/TFumigationForrecordMapper.xml

@@ -22,6 +22,54 @@
22 22
     <result column="org_id" property="orgId" jdbcType="INTEGER" />
23 23
     <result column="delete_state" property="deleteState" jdbcType="VARCHAR" />
24 24
     <result column="updatetime" property="updatetime" jdbcType="TIMESTAMP" />
25
+    <result column="stow_way" property="stowWay" jdbcType="VARCHAR" />
26
+    <result column="xzzydh" property="xzzydh" jdbcType="VARCHAR" />
27
+    <result column="cfdm" property="cfdm" jdbcType="VARCHAR" />
28
+    <result column="hcjcdh" property="hcjcdh" jdbcType="VARCHAR" />
29
+    <result column="djcxz" property="djcxz" jdbcType="INTEGER" />
30
+    <result column="cgxzfs" property="cgxzfs" jdbcType="VARCHAR" />
31
+    <result column="hlxzfs" property="hlxzfs" jdbcType="VARCHAR" />
32
+    <result column="hlxzynhljsjh" property="hlxzynhljsjh" jdbcType="VARCHAR" />
33
+    <result column="xzfazd" property="xzfazd" jdbcType="VARCHAR" />
34
+    <result column="xzfaqcr" property="xzfaqcr" jdbcType="VARCHAR" />
35
+    <result column="xzfapzr" property="xzfapzr" jdbcType="VARCHAR" />
36
+    <result column="xzfabbqk" property="xzfabbqk" jdbcType="VARCHAR" />
37
+    <result column="syryzzqk" property="syryzzqk" jdbcType="VARCHAR" />
38
+    <result column="syzzsh" property="syzzsh" jdbcType="VARCHAR" />
39
+    <result column="yjmc" property="yjmc" jdbcType="VARCHAR" />
40
+    <result column="jx" property="jx" jdbcType="VARCHAR" />
41
+    <result column="nd" property="nd" jdbcType="DECIMAL" />
42
+    <result column="lddwyyl" property="lddwyyl" jdbcType="DECIMAL" />
43
+    <result column="kjdwyyl" property="kjdwyyl" jdbcType="DECIMAL" />
44
+    <result column="zyyl" property="zyyl" jdbcType="DECIMAL" />
45
+    <result column="syff" property="syff" jdbcType="VARCHAR" />
46
+    <result column="lspz" property="lspz" jdbcType="VARCHAR" />
47
+    <result column="lssl" property="lssl" jdbcType="DECIMAL" />
48
+    <result column="lyxz" property="lyxz" jdbcType="VARCHAR" />
49
+    <result column="lysf" property="lysf" jdbcType="DECIMAL" />
50
+    <result column="dzfs" property="dzfs" jdbcType="VARCHAR" />
51
+    <result column="zyhc" property="zyhc" jdbcType="VARCHAR" />
52
+    <result column="ckmd" property="ckmd" jdbcType="VARCHAR" />
53
+    <result column="house_id" property="houseId" jdbcType="INTEGER" />
54
+    <result column="state" property="state" jdbcType="INTEGER" />
55
+    <result column="cfmc" property="cfmc" jdbcType="VARCHAR" />
56
+    <result column="yjyxq" property="yjyxq" jdbcType="TIMESTAMP" />
57
+    <result column="lqsl" property="lqsl" jdbcType="DECIMAL" />
58
+    <result column="sysl" property="sysl" jdbcType="DECIMAL" />
59
+    <result column="lqr" property="lqr" jdbcType="VARCHAR" />
60
+    <result column="lqsj" property="lqsj" jdbcType="TIMESTAMP" />
61
+    <result column="spr" property="spr" jdbcType="VARCHAR" />
62
+    <result column="spsj" property="spsj" jdbcType="TIMESTAMP" />
63
+    <result column="bgy" property="bgy" jdbcType="VARCHAR" />
64
+    <result column="xzrs" property="xzrs" jdbcType="INTEGER" />
65
+    <result column="xzzhr" property="xzzhr" jdbcType="VARCHAR" />
66
+    <result column="xzczry" property="xzczry" jdbcType="VARCHAR" />
67
+    <result column="fhry" property="fhry" jdbcType="VARCHAR" />
68
+    <result column="lyccdw" property="lyccdw" jdbcType="VARCHAR" />
69
+    <result column="lyccdwfzr" property="lyccdwfzr" jdbcType="VARCHAR" />
70
+    <result column="ylccdwlxdh" property="ylccdwlxdh" jdbcType="VARCHAR" />
71
+    <result column="sqrq" property="sqrq" jdbcType="TIMESTAMP" />
72
+    <result column="xzzydd" property="xzzydd" jdbcType="VARCHAR" />
25 73
   </resultMap>
26 74
   <sql id="Example_Where_Clause" >
27 75
     <where >
@@ -84,7 +132,12 @@
84 132
   <sql id="Base_Column_List" >
85 133
     id, operation_supervisor, position, contact_phone, fumigation_start, fumigation_end, 
86 134
     east, south, west, north, processing_instructions, enterprise_opinion, organs_opinion, 
87
-    creater, create_time, out_person, out_forrecord_time, org_id, delete_state, updatetime
135
+    creater, create_time, out_person, out_forrecord_time, org_id, delete_state, updatetime,
136
+    stow_way, xzzydh, cfdm, hcjcdh, djcxz, cgxzfs, hlxzfs, hlxzynhljsjh, xzfazd, xzfaqcr,
137
+    xzfapzr, xzfabbqk, syryzzqk, syzzsh, yjmc, jx, nd, lddwyyl, kjdwyyl, zyyl, syff,
138
+    lspz, lssl, lyxz, lysf, dzfs, zyhc, ckmd, house_id, state, cfmc, yjyxq, lqsl, sysl,
139
+    lqr, lqsj, spr, spsj, bgy, xzrs, xzzhr, xzczry, fhry, lyccdw, lyccdwfzr, ylccdwlxdh,
140
+    sqrq, xzzydd
88 141
   </sql>
89 142
   <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.chinaitop.depot.fumigation.model.TFumigationForrecordExample" >
90 143
     select
@@ -123,14 +176,42 @@
123 176
       north, processing_instructions, enterprise_opinion, 
124 177
       organs_opinion, creater, create_time, 
125 178
       out_person, out_forrecord_time, org_id, 
126
-      delete_state, updatetime)
179
+      delete_state, updatetime, stow_way,
180
+      xzzydh, cfdm, hcjcdh,
181
+      djcxz, cgxzfs, hlxzfs,
182
+      hlxzynhljsjh, xzfazd, xzfaqcr,
183
+      xzfapzr, xzfabbqk, syryzzqk,
184
+      syzzsh, yjmc, jx, nd,
185
+      lddwyyl, kjdwyyl, zyyl,
186
+      syff, lspz, lssl, lyxz,
187
+      lysf, dzfs, zyhc, ckmd,
188
+      house_id, state, cfmc,
189
+      yjyxq, lqsl, sysl,
190
+      lqr, lqsj, spr, spsj,
191
+      bgy, xzrs, xzzhr, xzczry,
192
+      fhry, lyccdw, lyccdwfzr,
193
+      ylccdwlxdh, sqrq, xzzydd)
127 194
     values (#{id,jdbcType=VARCHAR}, #{operationSupervisor,jdbcType=VARCHAR}, #{position,jdbcType=VARCHAR}, 
128 195
       #{contactPhone,jdbcType=VARCHAR}, #{fumigationStart,jdbcType=TIMESTAMP}, #{fumigationEnd,jdbcType=TIMESTAMP}, 
129 196
       #{east,jdbcType=VARCHAR}, #{south,jdbcType=VARCHAR}, #{west,jdbcType=VARCHAR}, 
130 197
       #{north,jdbcType=VARCHAR}, #{processingInstructions,jdbcType=VARCHAR}, #{enterpriseOpinion,jdbcType=VARCHAR}, 
131 198
       #{organsOpinion,jdbcType=VARCHAR}, #{creater,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, 
132 199
       #{outPerson,jdbcType=VARCHAR}, #{outForrecordTime,jdbcType=TIMESTAMP}, #{orgId,jdbcType=INTEGER}, 
133
-      #{deleteState,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP})
200
+      #{deleteState,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP}, #{stowWay,jdbcType=VARCHAR},
201
+      #{xzzydh,jdbcType=VARCHAR}, #{cfdm,jdbcType=VARCHAR}, #{hcjcdh,jdbcType=VARCHAR},
202
+      #{djcxz,jdbcType=INTEGER}, #{cgxzfs,jdbcType=VARCHAR}, #{hlxzfs,jdbcType=VARCHAR},
203
+      #{hlxzynhljsjh,jdbcType=VARCHAR}, #{xzfazd,jdbcType=VARCHAR}, #{xzfaqcr,jdbcType=VARCHAR},
204
+      #{xzfapzr,jdbcType=VARCHAR}, #{xzfabbqk,jdbcType=VARCHAR}, #{syryzzqk,jdbcType=VARCHAR},
205
+      #{syzzsh,jdbcType=VARCHAR}, #{yjmc,jdbcType=VARCHAR}, #{jx,jdbcType=VARCHAR}, #{nd,jdbcType=DECIMAL},
206
+      #{lddwyyl,jdbcType=DECIMAL}, #{kjdwyyl,jdbcType=DECIMAL}, #{zyyl,jdbcType=DECIMAL},
207
+      #{syff,jdbcType=VARCHAR}, #{lspz,jdbcType=VARCHAR}, #{lssl,jdbcType=DECIMAL}, #{lyxz,jdbcType=VARCHAR},
208
+      #{lysf,jdbcType=DECIMAL}, #{dzfs,jdbcType=VARCHAR}, #{zyhc,jdbcType=VARCHAR}, #{ckmd,jdbcType=VARCHAR},
209
+      #{houseId,jdbcType=INTEGER}, #{state,jdbcType=INTEGER}, #{cfmc,jdbcType=VARCHAR},
210
+      #{yjyxq,jdbcType=TIMESTAMP}, #{lqsl,jdbcType=DECIMAL}, #{sysl,jdbcType=DECIMAL},
211
+      #{lqr,jdbcType=VARCHAR}, #{lqsj,jdbcType=TIMESTAMP}, #{spr,jdbcType=VARCHAR}, #{spsj,jdbcType=TIMESTAMP},
212
+      #{bgy,jdbcType=VARCHAR}, #{xzrs,jdbcType=INTEGER}, #{xzzhr,jdbcType=VARCHAR}, #{xzczry,jdbcType=VARCHAR},
213
+      #{fhry,jdbcType=VARCHAR}, #{lyccdw,jdbcType=VARCHAR}, #{lyccdwfzr,jdbcType=VARCHAR},
214
+      #{ylccdwlxdh,jdbcType=VARCHAR}, #{sqrq,jdbcType=TIMESTAMP}, #{xzzydd,jdbcType=VARCHAR})
134 215
   </insert>
135 216
   <insert id="insertSelective" parameterType="com.chinaitop.depot.fumigation.model.TFumigationForrecord" >
136 217
     insert into t_fumigation_forrecord
@@ -195,6 +276,150 @@
195 276
       <if test="updatetime != null" >
196 277
         updatetime,
197 278
       </if>
279
+      <if test="stowWay != null" >
280
+        stow_way,
281
+      </if>
282
+      <if test="xzzydh != null" >
283
+        xzzydh,
284
+      </if>
285
+      <if test="cfdm != null" >
286
+        cfdm,
287
+      </if>
288
+      <if test="hcjcdh != null" >
289
+        hcjcdh,
290
+      </if>
291
+      <if test="djcxz != null" >
292
+        djcxz,
293
+      </if>
294
+      <if test="cgxzfs != null" >
295
+        cgxzfs,
296
+      </if>
297
+      <if test="hlxzfs != null" >
298
+        hlxzfs,
299
+      </if>
300
+      <if test="hlxzynhljsjh != null" >
301
+        hlxzynhljsjh,
302
+      </if>
303
+      <if test="xzfazd != null" >
304
+        xzfazd,
305
+      </if>
306
+      <if test="xzfaqcr != null" >
307
+        xzfaqcr,
308
+      </if>
309
+      <if test="xzfapzr != null" >
310
+        xzfapzr,
311
+      </if>
312
+      <if test="xzfabbqk != null" >
313
+        xzfabbqk,
314
+      </if>
315
+      <if test="syryzzqk != null" >
316
+        syryzzqk,
317
+      </if>
318
+      <if test="syzzsh != null" >
319
+        syzzsh,
320
+      </if>
321
+      <if test="yjmc != null" >
322
+        yjmc,
323
+      </if>
324
+      <if test="jx != null" >
325
+        jx,
326
+      </if>
327
+      <if test="nd != null" >
328
+        nd,
329
+      </if>
330
+      <if test="lddwyyl != null" >
331
+        lddwyyl,
332
+      </if>
333
+      <if test="kjdwyyl != null" >
334
+        kjdwyyl,
335
+      </if>
336
+      <if test="zyyl != null" >
337
+        zyyl,
338
+      </if>
339
+      <if test="syff != null" >
340
+        syff,
341
+      </if>
342
+      <if test="lspz != null" >
343
+        lspz,
344
+      </if>
345
+      <if test="lssl != null" >
346
+        lssl,
347
+      </if>
348
+      <if test="lyxz != null" >
349
+        lyxz,
350
+      </if>
351
+      <if test="lysf != null" >
352
+        lysf,
353
+      </if>
354
+      <if test="dzfs != null" >
355
+        dzfs,
356
+      </if>
357
+      <if test="zyhc != null" >
358
+        zyhc,
359
+      </if>
360
+      <if test="ckmd != null" >
361
+        ckmd,
362
+      </if>
363
+      <if test="houseId != null" >
364
+        house_id,
365
+      </if>
366
+      <if test="state != null" >
367
+        state,
368
+      </if>
369
+      <if test="cfmc != null" >
370
+        cfmc,
371
+      </if>
372
+      <if test="yjyxq != null" >
373
+        yjyxq,
374
+      </if>
375
+      <if test="lqsl != null" >
376
+        lqsl,
377
+      </if>
378
+      <if test="sysl != null" >
379
+        sysl,
380
+      </if>
381
+      <if test="lqr != null" >
382
+        lqr,
383
+      </if>
384
+      <if test="lqsj != null" >
385
+        lqsj,
386
+      </if>
387
+      <if test="spr != null" >
388
+        spr,
389
+      </if>
390
+      <if test="spsj != null" >
391
+        spsj,
392
+      </if>
393
+      <if test="bgy != null" >
394
+        bgy,
395
+      </if>
396
+      <if test="xzrs != null" >
397
+        xzrs,
398
+      </if>
399
+      <if test="xzzhr != null" >
400
+        xzzhr,
401
+      </if>
402
+      <if test="xzczry != null" >
403
+        xzczry,
404
+      </if>
405
+      <if test="fhry != null" >
406
+        fhry,
407
+      </if>
408
+      <if test="lyccdw != null" >
409
+        lyccdw,
410
+      </if>
411
+      <if test="lyccdwfzr != null" >
412
+        lyccdwfzr,
413
+      </if>
414
+      <if test="ylccdwlxdh != null" >
415
+        ylccdwlxdh,
416
+      </if>
417
+      <if test="sqrq != null" >
418
+        sqrq,
419
+      </if>
420
+      <if test="xzzydd != null" >
421
+        xzzydd,
422
+      </if>
198 423
     </trim>
199 424
     <trim prefix="values (" suffix=")" suffixOverrides="," >
200 425
       <if test="id != null" >
@@ -257,6 +482,150 @@
257 482
       <if test="updatetime != null" >
258 483
         #{updatetime,jdbcType=TIMESTAMP},
259 484
       </if>
485
+      <if test="stowWay != null" >
486
+        #{stowWay,jdbcType=VARCHAR},
487
+      </if>
488
+      <if test="xzzydh != null" >
489
+        #{xzzydh,jdbcType=VARCHAR},
490
+      </if>
491
+      <if test="cfdm != null" >
492
+        #{cfdm,jdbcType=VARCHAR},
493
+      </if>
494
+      <if test="hcjcdh != null" >
495
+        #{hcjcdh,jdbcType=VARCHAR},
496
+      </if>
497
+      <if test="djcxz != null" >
498
+        #{djcxz,jdbcType=INTEGER},
499
+      </if>
500
+      <if test="cgxzfs != null" >
501
+        #{cgxzfs,jdbcType=VARCHAR},
502
+      </if>
503
+      <if test="hlxzfs != null" >
504
+        #{hlxzfs,jdbcType=VARCHAR},
505
+      </if>
506
+      <if test="hlxzynhljsjh != null" >
507
+        #{hlxzynhljsjh,jdbcType=VARCHAR},
508
+      </if>
509
+      <if test="xzfazd != null" >
510
+        #{xzfazd,jdbcType=VARCHAR},
511
+      </if>
512
+      <if test="xzfaqcr != null" >
513
+        #{xzfaqcr,jdbcType=VARCHAR},
514
+      </if>
515
+      <if test="xzfapzr != null" >
516
+        #{xzfapzr,jdbcType=VARCHAR},
517
+      </if>
518
+      <if test="xzfabbqk != null" >
519
+        #{xzfabbqk,jdbcType=VARCHAR},
520
+      </if>
521
+      <if test="syryzzqk != null" >
522
+        #{syryzzqk,jdbcType=VARCHAR},
523
+      </if>
524
+      <if test="syzzsh != null" >
525
+        #{syzzsh,jdbcType=VARCHAR},
526
+      </if>
527
+      <if test="yjmc != null" >
528
+        #{yjmc,jdbcType=VARCHAR},
529
+      </if>
530
+      <if test="jx != null" >
531
+        #{jx,jdbcType=VARCHAR},
532
+      </if>
533
+      <if test="nd != null" >
534
+        #{nd,jdbcType=DECIMAL},
535
+      </if>
536
+      <if test="lddwyyl != null" >
537
+        #{lddwyyl,jdbcType=DECIMAL},
538
+      </if>
539
+      <if test="kjdwyyl != null" >
540
+        #{kjdwyyl,jdbcType=DECIMAL},
541
+      </if>
542
+      <if test="zyyl != null" >
543
+        #{zyyl,jdbcType=DECIMAL},
544
+      </if>
545
+      <if test="syff != null" >
546
+        #{syff,jdbcType=VARCHAR},
547
+      </if>
548
+      <if test="lspz != null" >
549
+        #{lspz,jdbcType=VARCHAR},
550
+      </if>
551
+      <if test="lssl != null" >
552
+        #{lssl,jdbcType=DECIMAL},
553
+      </if>
554
+      <if test="lyxz != null" >
555
+        #{lyxz,jdbcType=VARCHAR},
556
+      </if>
557
+      <if test="lysf != null" >
558
+        #{lysf,jdbcType=DECIMAL},
559
+      </if>
560
+      <if test="dzfs != null" >
561
+        #{dzfs,jdbcType=VARCHAR},
562
+      </if>
563
+      <if test="zyhc != null" >
564
+        #{zyhc,jdbcType=VARCHAR},
565
+      </if>
566
+      <if test="ckmd != null" >
567
+        #{ckmd,jdbcType=VARCHAR},
568
+      </if>
569
+      <if test="houseId != null" >
570
+        #{houseId,jdbcType=INTEGER},
571
+      </if>
572
+      <if test="state != null" >
573
+        #{state,jdbcType=INTEGER},
574
+      </if>
575
+      <if test="cfmc != null" >
576
+        #{cfmc,jdbcType=VARCHAR},
577
+      </if>
578
+      <if test="yjyxq != null" >
579
+        #{yjyxq,jdbcType=TIMESTAMP},
580
+      </if>
581
+      <if test="lqsl != null" >
582
+        #{lqsl,jdbcType=DECIMAL},
583
+      </if>
584
+      <if test="sysl != null" >
585
+        #{sysl,jdbcType=DECIMAL},
586
+      </if>
587
+      <if test="lqr != null" >
588
+        #{lqr,jdbcType=VARCHAR},
589
+      </if>
590
+      <if test="lqsj != null" >
591
+        #{lqsj,jdbcType=TIMESTAMP},
592
+      </if>
593
+      <if test="spr != null" >
594
+        #{spr,jdbcType=VARCHAR},
595
+      </if>
596
+      <if test="spsj != null" >
597
+        #{spsj,jdbcType=TIMESTAMP},
598
+      </if>
599
+      <if test="bgy != null" >
600
+        #{bgy,jdbcType=VARCHAR},
601
+      </if>
602
+      <if test="xzrs != null" >
603
+        #{xzrs,jdbcType=INTEGER},
604
+      </if>
605
+      <if test="xzzhr != null" >
606
+        #{xzzhr,jdbcType=VARCHAR},
607
+      </if>
608
+      <if test="xzczry != null" >
609
+        #{xzczry,jdbcType=VARCHAR},
610
+      </if>
611
+      <if test="fhry != null" >
612
+        #{fhry,jdbcType=VARCHAR},
613
+      </if>
614
+      <if test="lyccdw != null" >
615
+        #{lyccdw,jdbcType=VARCHAR},
616
+      </if>
617
+      <if test="lyccdwfzr != null" >
618
+        #{lyccdwfzr,jdbcType=VARCHAR},
619
+      </if>
620
+      <if test="ylccdwlxdh != null" >
621
+        #{ylccdwlxdh,jdbcType=VARCHAR},
622
+      </if>
623
+      <if test="sqrq != null" >
624
+        #{sqrq,jdbcType=TIMESTAMP},
625
+      </if>
626
+      <if test="xzzydd != null" >
627
+        #{xzzydd,jdbcType=VARCHAR},
628
+      </if>
260 629
     </trim>
261 630
   </insert>
262 631
   <select id="countByExample" parameterType="com.chinaitop.depot.fumigation.model.TFumigationForrecordExample" resultType="java.lang.Integer" >
@@ -328,6 +697,150 @@
328 697
       <if test="record.updatetime != null" >
329 698
         updatetime = #{record.updatetime,jdbcType=TIMESTAMP},
330 699
       </if>
700
+      <if test="record.stowWay != null" >
701
+        stow_way = #{record.stowWay,jdbcType=VARCHAR},
702
+      </if>
703
+      <if test="record.xzzydh != null" >
704
+        xzzydh = #{record.xzzydh,jdbcType=VARCHAR},
705
+      </if>
706
+      <if test="record.cfdm != null" >
707
+        cfdm = #{record.cfdm,jdbcType=VARCHAR},
708
+      </if>
709
+      <if test="record.hcjcdh != null" >
710
+        hcjcdh = #{record.hcjcdh,jdbcType=VARCHAR},
711
+      </if>
712
+      <if test="record.djcxz != null" >
713
+        djcxz = #{record.djcxz,jdbcType=INTEGER},
714
+      </if>
715
+      <if test="record.cgxzfs != null" >
716
+        cgxzfs = #{record.cgxzfs,jdbcType=VARCHAR},
717
+      </if>
718
+      <if test="record.hlxzfs != null" >
719
+        hlxzfs = #{record.hlxzfs,jdbcType=VARCHAR},
720
+      </if>
721
+      <if test="record.hlxzynhljsjh != null" >
722
+        hlxzynhljsjh = #{record.hlxzynhljsjh,jdbcType=VARCHAR},
723
+      </if>
724
+      <if test="record.xzfazd != null" >
725
+        xzfazd = #{record.xzfazd,jdbcType=VARCHAR},
726
+      </if>
727
+      <if test="record.xzfaqcr != null" >
728
+        xzfaqcr = #{record.xzfaqcr,jdbcType=VARCHAR},
729
+      </if>
730
+      <if test="record.xzfapzr != null" >
731
+        xzfapzr = #{record.xzfapzr,jdbcType=VARCHAR},
732
+      </if>
733
+      <if test="record.xzfabbqk != null" >
734
+        xzfabbqk = #{record.xzfabbqk,jdbcType=VARCHAR},
735
+      </if>
736
+      <if test="record.syryzzqk != null" >
737
+        syryzzqk = #{record.syryzzqk,jdbcType=VARCHAR},
738
+      </if>
739
+      <if test="record.syzzsh != null" >
740
+        syzzsh = #{record.syzzsh,jdbcType=VARCHAR},
741
+      </if>
742
+      <if test="record.yjmc != null" >
743
+        yjmc = #{record.yjmc,jdbcType=VARCHAR},
744
+      </if>
745
+      <if test="record.jx != null" >
746
+        jx = #{record.jx,jdbcType=VARCHAR},
747
+      </if>
748
+      <if test="record.nd != null" >
749
+        nd = #{record.nd,jdbcType=DECIMAL},
750
+      </if>
751
+      <if test="record.lddwyyl != null" >
752
+        lddwyyl = #{record.lddwyyl,jdbcType=DECIMAL},
753
+      </if>
754
+      <if test="record.kjdwyyl != null" >
755
+        kjdwyyl = #{record.kjdwyyl,jdbcType=DECIMAL},
756
+      </if>
757
+      <if test="record.zyyl != null" >
758
+        zyyl = #{record.zyyl,jdbcType=DECIMAL},
759
+      </if>
760
+      <if test="record.syff != null" >
761
+        syff = #{record.syff,jdbcType=VARCHAR},
762
+      </if>
763
+      <if test="record.lspz != null" >
764
+        lspz = #{record.lspz,jdbcType=VARCHAR},
765
+      </if>
766
+      <if test="record.lssl != null" >
767
+        lssl = #{record.lssl,jdbcType=DECIMAL},
768
+      </if>
769
+      <if test="record.lyxz != null" >
770
+        lyxz = #{record.lyxz,jdbcType=VARCHAR},
771
+      </if>
772
+      <if test="record.lysf != null" >
773
+        lysf = #{record.lysf,jdbcType=DECIMAL},
774
+      </if>
775
+      <if test="record.dzfs != null" >
776
+        dzfs = #{record.dzfs,jdbcType=VARCHAR},
777
+      </if>
778
+      <if test="record.zyhc != null" >
779
+        zyhc = #{record.zyhc,jdbcType=VARCHAR},
780
+      </if>
781
+      <if test="record.ckmd != null" >
782
+        ckmd = #{record.ckmd,jdbcType=VARCHAR},
783
+      </if>
784
+      <if test="record.houseId != null" >
785
+        house_id = #{record.houseId,jdbcType=INTEGER},
786
+      </if>
787
+      <if test="record.state != null" >
788
+        state = #{record.state,jdbcType=INTEGER},
789
+      </if>
790
+      <if test="record.cfmc != null" >
791
+        cfmc = #{record.cfmc,jdbcType=VARCHAR},
792
+      </if>
793
+      <if test="record.yjyxq != null" >
794
+        yjyxq = #{record.yjyxq,jdbcType=TIMESTAMP},
795
+      </if>
796
+      <if test="record.lqsl != null" >
797
+        lqsl = #{record.lqsl,jdbcType=DECIMAL},
798
+      </if>
799
+      <if test="record.sysl != null" >
800
+        sysl = #{record.sysl,jdbcType=DECIMAL},
801
+      </if>
802
+      <if test="record.lqr != null" >
803
+        lqr = #{record.lqr,jdbcType=VARCHAR},
804
+      </if>
805
+      <if test="record.lqsj != null" >
806
+        lqsj = #{record.lqsj,jdbcType=TIMESTAMP},
807
+      </if>
808
+      <if test="record.spr != null" >
809
+        spr = #{record.spr,jdbcType=VARCHAR},
810
+      </if>
811
+      <if test="record.spsj != null" >
812
+        spsj = #{record.spsj,jdbcType=TIMESTAMP},
813
+      </if>
814
+      <if test="record.bgy != null" >
815
+        bgy = #{record.bgy,jdbcType=VARCHAR},
816
+      </if>
817
+      <if test="record.xzrs != null" >
818
+        xzrs = #{record.xzrs,jdbcType=INTEGER},
819
+      </if>
820
+      <if test="record.xzzhr != null" >
821
+        xzzhr = #{record.xzzhr,jdbcType=VARCHAR},
822
+      </if>
823
+      <if test="record.xzczry != null" >
824
+        xzczry = #{record.xzczry,jdbcType=VARCHAR},
825
+      </if>
826
+      <if test="record.fhry != null" >
827
+        fhry = #{record.fhry,jdbcType=VARCHAR},
828
+      </if>
829
+      <if test="record.lyccdw != null" >
830
+        lyccdw = #{record.lyccdw,jdbcType=VARCHAR},
831
+      </if>
832
+      <if test="record.lyccdwfzr != null" >
833
+        lyccdwfzr = #{record.lyccdwfzr,jdbcType=VARCHAR},
834
+      </if>
835
+      <if test="record.ylccdwlxdh != null" >
836
+        ylccdwlxdh = #{record.ylccdwlxdh,jdbcType=VARCHAR},
837
+      </if>
838
+      <if test="record.sqrq != null" >
839
+        sqrq = #{record.sqrq,jdbcType=TIMESTAMP},
840
+      </if>
841
+      <if test="record.xzzydd != null" >
842
+        xzzydd = #{record.xzzydd,jdbcType=VARCHAR},
843
+      </if>
331 844
     </set>
332 845
     <if test="_parameter != null" >
333 846
       <include refid="Update_By_Example_Where_Clause" />
@@ -354,7 +867,55 @@
354 867
       out_forrecord_time = #{record.outForrecordTime,jdbcType=TIMESTAMP},
355 868
       org_id = #{record.orgId,jdbcType=INTEGER},
356 869
       delete_state = #{record.deleteState,jdbcType=VARCHAR},
357
-      updatetime = #{record.updatetime,jdbcType=TIMESTAMP}
870
+      updatetime = #{record.updatetime,jdbcType=TIMESTAMP},
871
+    stow_way = #{record.stowWay,jdbcType=VARCHAR},
872
+    xzzydh = #{record.xzzydh,jdbcType=VARCHAR},
873
+    cfdm = #{record.cfdm,jdbcType=VARCHAR},
874
+    hcjcdh = #{record.hcjcdh,jdbcType=VARCHAR},
875
+    djcxz = #{record.djcxz,jdbcType=INTEGER},
876
+    cgxzfs = #{record.cgxzfs,jdbcType=VARCHAR},
877
+    hlxzfs = #{record.hlxzfs,jdbcType=VARCHAR},
878
+    hlxzynhljsjh = #{record.hlxzynhljsjh,jdbcType=VARCHAR},
879
+    xzfazd = #{record.xzfazd,jdbcType=VARCHAR},
880
+    xzfaqcr = #{record.xzfaqcr,jdbcType=VARCHAR},
881
+    xzfapzr = #{record.xzfapzr,jdbcType=VARCHAR},
882
+    xzfabbqk = #{record.xzfabbqk,jdbcType=VARCHAR},
883
+    syryzzqk = #{record.syryzzqk,jdbcType=VARCHAR},
884
+    syzzsh = #{record.syzzsh,jdbcType=VARCHAR},
885
+    yjmc = #{record.yjmc,jdbcType=VARCHAR},
886
+    jx = #{record.jx,jdbcType=VARCHAR},
887
+    nd = #{record.nd,jdbcType=DECIMAL},
888
+    lddwyyl = #{record.lddwyyl,jdbcType=DECIMAL},
889
+    kjdwyyl = #{record.kjdwyyl,jdbcType=DECIMAL},
890
+    zyyl = #{record.zyyl,jdbcType=DECIMAL},
891
+    syff = #{record.syff,jdbcType=VARCHAR},
892
+    lspz = #{record.lspz,jdbcType=VARCHAR},
893
+    lssl = #{record.lssl,jdbcType=DECIMAL},
894
+    lyxz = #{record.lyxz,jdbcType=VARCHAR},
895
+    lysf = #{record.lysf,jdbcType=DECIMAL},
896
+    dzfs = #{record.dzfs,jdbcType=VARCHAR},
897
+    zyhc = #{record.zyhc,jdbcType=VARCHAR},
898
+    ckmd = #{record.ckmd,jdbcType=VARCHAR},
899
+    house_id = #{record.houseId,jdbcType=INTEGER},
900
+    state = #{record.state,jdbcType=INTEGER},
901
+    cfmc = #{record.cfmc,jdbcType=VARCHAR},
902
+    yjyxq = #{record.yjyxq,jdbcType=TIMESTAMP},
903
+    lqsl = #{record.lqsl,jdbcType=DECIMAL},
904
+    sysl = #{record.sysl,jdbcType=DECIMAL},
905
+    lqr = #{record.lqr,jdbcType=VARCHAR},
906
+    lqsj = #{record.lqsj,jdbcType=TIMESTAMP},
907
+    spr = #{record.spr,jdbcType=VARCHAR},
908
+    spsj = #{record.spsj,jdbcType=TIMESTAMP},
909
+    bgy = #{record.bgy,jdbcType=VARCHAR},
910
+    xzrs = #{record.xzrs,jdbcType=INTEGER},
911
+    xzzhr = #{record.xzzhr,jdbcType=VARCHAR},
912
+    xzczry = #{record.xzczry,jdbcType=VARCHAR},
913
+    fhry = #{record.fhry,jdbcType=VARCHAR},
914
+    lyccdw = #{record.lyccdw,jdbcType=VARCHAR},
915
+    lyccdwfzr = #{record.lyccdwfzr,jdbcType=VARCHAR},
916
+    ylccdwlxdh = #{record.ylccdwlxdh,jdbcType=VARCHAR},
917
+    sqrq = #{record.sqrq,jdbcType=TIMESTAMP},
918
+    xzzydd = #{record.xzzydd,jdbcType=VARCHAR}
358 919
     <if test="_parameter != null" >
359 920
       <include refid="Update_By_Example_Where_Clause" />
360 921
     </if>
@@ -419,6 +980,150 @@
419 980
       <if test="updatetime != null" >
420 981
         updatetime = #{updatetime,jdbcType=TIMESTAMP},
421 982
       </if>
983
+      <if test="stowWay != null" >
984
+        stow_way = #{stowWay,jdbcType=VARCHAR},
985
+      </if>
986
+      <if test="xzzydh != null" >
987
+        xzzydh = #{xzzydh,jdbcType=VARCHAR},
988
+      </if>
989
+      <if test="cfdm != null" >
990
+        cfdm = #{cfdm,jdbcType=VARCHAR},
991
+      </if>
992
+      <if test="hcjcdh != null" >
993
+        hcjcdh = #{hcjcdh,jdbcType=VARCHAR},
994
+      </if>
995
+      <if test="djcxz != null" >
996
+        djcxz = #{djcxz,jdbcType=INTEGER},
997
+      </if>
998
+      <if test="cgxzfs != null" >
999
+        cgxzfs = #{cgxzfs,jdbcType=VARCHAR},
1000
+      </if>
1001
+      <if test="hlxzfs != null" >
1002
+        hlxzfs = #{hlxzfs,jdbcType=VARCHAR},
1003
+      </if>
1004
+      <if test="hlxzynhljsjh != null" >
1005
+        hlxzynhljsjh = #{hlxzynhljsjh,jdbcType=VARCHAR},
1006
+      </if>
1007
+      <if test="xzfazd != null" >
1008
+        xzfazd = #{xzfazd,jdbcType=VARCHAR},
1009
+      </if>
1010
+      <if test="xzfaqcr != null" >
1011
+        xzfaqcr = #{xzfaqcr,jdbcType=VARCHAR},
1012
+      </if>
1013
+      <if test="xzfapzr != null" >
1014
+        xzfapzr = #{xzfapzr,jdbcType=VARCHAR},
1015
+      </if>
1016
+      <if test="xzfabbqk != null" >
1017
+        xzfabbqk = #{xzfabbqk,jdbcType=VARCHAR},
1018
+      </if>
1019
+      <if test="syryzzqk != null" >
1020
+        syryzzqk = #{syryzzqk,jdbcType=VARCHAR},
1021
+      </if>
1022
+      <if test="syzzsh != null" >
1023
+        syzzsh = #{syzzsh,jdbcType=VARCHAR},
1024
+      </if>
1025
+      <if test="yjmc != null" >
1026
+        yjmc = #{yjmc,jdbcType=VARCHAR},
1027
+      </if>
1028
+      <if test="jx != null" >
1029
+        jx = #{jx,jdbcType=VARCHAR},
1030
+      </if>
1031
+      <if test="nd != null" >
1032
+        nd = #{nd,jdbcType=DECIMAL},
1033
+      </if>
1034
+      <if test="lddwyyl != null" >
1035
+        lddwyyl = #{lddwyyl,jdbcType=DECIMAL},
1036
+      </if>
1037
+      <if test="kjdwyyl != null" >
1038
+        kjdwyyl = #{kjdwyyl,jdbcType=DECIMAL},
1039
+      </if>
1040
+      <if test="zyyl != null" >
1041
+        zyyl = #{zyyl,jdbcType=DECIMAL},
1042
+      </if>
1043
+      <if test="syff != null" >
1044
+        syff = #{syff,jdbcType=VARCHAR},
1045
+      </if>
1046
+      <if test="lspz != null" >
1047
+        lspz = #{lspz,jdbcType=VARCHAR},
1048
+      </if>
1049
+      <if test="lssl != null" >
1050
+        lssl = #{lssl,jdbcType=DECIMAL},
1051
+      </if>
1052
+      <if test="lyxz != null" >
1053
+        lyxz = #{lyxz,jdbcType=VARCHAR},
1054
+      </if>
1055
+      <if test="lysf != null" >
1056
+        lysf = #{lysf,jdbcType=DECIMAL},
1057
+      </if>
1058
+      <if test="dzfs != null" >
1059
+        dzfs = #{dzfs,jdbcType=VARCHAR},
1060
+      </if>
1061
+      <if test="zyhc != null" >
1062
+        zyhc = #{zyhc,jdbcType=VARCHAR},
1063
+      </if>
1064
+      <if test="ckmd != null" >
1065
+        ckmd = #{ckmd,jdbcType=VARCHAR},
1066
+      </if>
1067
+      <if test="houseId != null" >
1068
+        house_id = #{houseId,jdbcType=INTEGER},
1069
+      </if>
1070
+      <if test="state != null" >
1071
+        state = #{state,jdbcType=INTEGER},
1072
+      </if>
1073
+      <if test="cfmc != null" >
1074
+        cfmc = #{cfmc,jdbcType=VARCHAR},
1075
+      </if>
1076
+      <if test="yjyxq != null" >
1077
+        yjyxq = #{yjyxq,jdbcType=TIMESTAMP},
1078
+      </if>
1079
+      <if test="lqsl != null" >
1080
+        lqsl = #{lqsl,jdbcType=DECIMAL},
1081
+      </if>
1082
+      <if test="sysl != null" >
1083
+        sysl = #{sysl,jdbcType=DECIMAL},
1084
+      </if>
1085
+      <if test="lqr != null" >
1086
+        lqr = #{lqr,jdbcType=VARCHAR},
1087
+      </if>
1088
+      <if test="lqsj != null" >
1089
+        lqsj = #{lqsj,jdbcType=TIMESTAMP},
1090
+      </if>
1091
+      <if test="spr != null" >
1092
+        spr = #{spr,jdbcType=VARCHAR},
1093
+      </if>
1094
+      <if test="spsj != null" >
1095
+        spsj = #{spsj,jdbcType=TIMESTAMP},
1096
+      </if>
1097
+      <if test="bgy != null" >
1098
+        bgy = #{bgy,jdbcType=VARCHAR},
1099
+      </if>
1100
+      <if test="xzrs != null" >
1101
+        xzrs = #{xzrs,jdbcType=INTEGER},
1102
+      </if>
1103
+      <if test="xzzhr != null" >
1104
+        xzzhr = #{xzzhr,jdbcType=VARCHAR},
1105
+      </if>
1106
+      <if test="xzczry != null" >
1107
+        xzczry = #{xzczry,jdbcType=VARCHAR},
1108
+      </if>
1109
+      <if test="fhry != null" >
1110
+        fhry = #{fhry,jdbcType=VARCHAR},
1111
+      </if>
1112
+      <if test="lyccdw != null" >
1113
+        lyccdw = #{lyccdw,jdbcType=VARCHAR},
1114
+      </if>
1115
+      <if test="lyccdwfzr != null" >
1116
+        lyccdwfzr = #{lyccdwfzr,jdbcType=VARCHAR},
1117
+      </if>
1118
+      <if test="ylccdwlxdh != null" >
1119
+        ylccdwlxdh = #{ylccdwlxdh,jdbcType=VARCHAR},
1120
+      </if>
1121
+      <if test="sqrq != null" >
1122
+        sqrq = #{sqrq,jdbcType=TIMESTAMP},
1123
+      </if>
1124
+      <if test="xzzydd != null" >
1125
+        xzzydd = #{xzzydd,jdbcType=VARCHAR},
1126
+      </if>
422 1127
     </set>
423 1128
     where id = #{id,jdbcType=VARCHAR}
424 1129
   </update>
@@ -442,7 +1147,55 @@
442 1147
       out_forrecord_time = #{outForrecordTime,jdbcType=TIMESTAMP},
443 1148
       org_id = #{orgId,jdbcType=INTEGER},
444 1149
       delete_state = #{deleteState,jdbcType=VARCHAR},
445
-      updatetime = #{updatetime,jdbcType=TIMESTAMP}
1150
+      updatetime = #{updatetime,jdbcType=TIMESTAMP},
1151
+      stow_way = #{stowWay,jdbcType=VARCHAR},
1152
+      xzzydh = #{xzzydh,jdbcType=VARCHAR},
1153
+      cfdm = #{cfdm,jdbcType=VARCHAR},
1154
+      hcjcdh = #{hcjcdh,jdbcType=VARCHAR},
1155
+      djcxz = #{djcxz,jdbcType=INTEGER},
1156
+      cgxzfs = #{cgxzfs,jdbcType=VARCHAR},
1157
+      hlxzfs = #{hlxzfs,jdbcType=VARCHAR},
1158
+      hlxzynhljsjh = #{hlxzynhljsjh,jdbcType=VARCHAR},
1159
+      xzfazd = #{xzfazd,jdbcType=VARCHAR},
1160
+      xzfaqcr = #{xzfaqcr,jdbcType=VARCHAR},
1161
+      xzfapzr = #{xzfapzr,jdbcType=VARCHAR},
1162
+      xzfabbqk = #{xzfabbqk,jdbcType=VARCHAR},
1163
+      syryzzqk = #{syryzzqk,jdbcType=VARCHAR},
1164
+      syzzsh = #{syzzsh,jdbcType=VARCHAR},
1165
+      yjmc = #{yjmc,jdbcType=VARCHAR},
1166
+      jx = #{jx,jdbcType=VARCHAR},
1167
+      nd = #{nd,jdbcType=DECIMAL},
1168
+      lddwyyl = #{lddwyyl,jdbcType=DECIMAL},
1169
+      kjdwyyl = #{kjdwyyl,jdbcType=DECIMAL},
1170
+      zyyl = #{zyyl,jdbcType=DECIMAL},
1171
+      syff = #{syff,jdbcType=VARCHAR},
1172
+      lspz = #{lspz,jdbcType=VARCHAR},
1173
+      lssl = #{lssl,jdbcType=DECIMAL},
1174
+      lyxz = #{lyxz,jdbcType=VARCHAR},
1175
+      lysf = #{lysf,jdbcType=DECIMAL},
1176
+      dzfs = #{dzfs,jdbcType=VARCHAR},
1177
+      zyhc = #{zyhc,jdbcType=VARCHAR},
1178
+      ckmd = #{ckmd,jdbcType=VARCHAR},
1179
+      house_id = #{houseId,jdbcType=INTEGER},
1180
+      state = #{state,jdbcType=INTEGER},
1181
+      cfmc = #{cfmc,jdbcType=VARCHAR},
1182
+      yjyxq = #{yjyxq,jdbcType=TIMESTAMP},
1183
+      lqsl = #{lqsl,jdbcType=DECIMAL},
1184
+      sysl = #{sysl,jdbcType=DECIMAL},
1185
+      lqr = #{lqr,jdbcType=VARCHAR},
1186
+      lqsj = #{lqsj,jdbcType=TIMESTAMP},
1187
+      spr = #{spr,jdbcType=VARCHAR},
1188
+      spsj = #{spsj,jdbcType=TIMESTAMP},
1189
+      bgy = #{bgy,jdbcType=VARCHAR},
1190
+      xzrs = #{xzrs,jdbcType=INTEGER},
1191
+      xzzhr = #{xzzhr,jdbcType=VARCHAR},
1192
+      xzczry = #{xzczry,jdbcType=VARCHAR},
1193
+      fhry = #{fhry,jdbcType=VARCHAR},
1194
+      lyccdw = #{lyccdw,jdbcType=VARCHAR},
1195
+      lyccdwfzr = #{lyccdwfzr,jdbcType=VARCHAR},
1196
+      ylccdwlxdh = #{ylccdwlxdh,jdbcType=VARCHAR},
1197
+      sqrq = #{sqrq,jdbcType=TIMESTAMP},
1198
+      xzzydd = #{xzzydd,jdbcType=VARCHAR}
446 1199
     where id = #{id,jdbcType=VARCHAR}
447 1200
   </update>
448 1201
 

+ 498 - 0
src/main/java/com/chinaitop/depot/fumigation/model/TFumigationForrecord.java

@@ -1,6 +1,10 @@
1 1
 package com.chinaitop.depot.fumigation.model;
2 2
 
3
+import org.springframework.format.annotation.DateTimeFormat;
4
+
5
+import java.math.BigDecimal;
3 6
 import java.util.Date;
7
+import java.util.List;
4 8
 
5 9
 public class TFumigationForrecord {
6 10
     private String id;
@@ -11,6 +15,7 @@ public class TFumigationForrecord {
11 15
 
12 16
     private String contactPhone;
13 17
 
18
+    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
14 19
     private Date fumigationStart;
15 20
 
16 21
     private Date fumigationEnd;
@@ -43,6 +48,107 @@ public class TFumigationForrecord {
43 48
 
44 49
     private Date updatetime;
45 50
 
51
+    private List<TFumigationPersonnel> fumigationPersonnelList;
52
+
53
+    private String stowWay;
54
+
55
+    private String xzzydh;
56
+
57
+    private String cfdm;
58
+
59
+    private String hcjcdh;
60
+
61
+    private Integer djcxz;
62
+
63
+    private String cgxzfs;
64
+
65
+    private String hlxzfs;
66
+
67
+    private String hlxzynhljsjh;
68
+
69
+    private String xzfazd;
70
+
71
+    private String xzfaqcr;
72
+
73
+    private String xzfapzr;
74
+
75
+    private String xzfabbqk;
76
+
77
+    private String syryzzqk;
78
+
79
+    private String syzzsh;
80
+
81
+    private String yjmc;
82
+
83
+    private String jx;
84
+
85
+    private BigDecimal nd;
86
+
87
+    private BigDecimal lddwyyl;
88
+
89
+    private BigDecimal kjdwyyl;
90
+
91
+    private BigDecimal zyyl;
92
+
93
+    private String syff;
94
+
95
+    private String lspz;
96
+
97
+    private BigDecimal lssl;
98
+
99
+    private String lyxz;
100
+
101
+    private BigDecimal lysf;
102
+
103
+    private String dzfs;
104
+
105
+    private String zyhc;
106
+
107
+    private String ckmd;
108
+
109
+    private Integer houseId;
110
+
111
+    private Integer state;
112
+
113
+    private String cfmc;
114
+
115
+    private Date yjyxq;
116
+
117
+    private BigDecimal lqsl;
118
+
119
+    private BigDecimal sysl;
120
+
121
+    private String lqr;
122
+
123
+    private Date lqsj;
124
+
125
+    private String spr;
126
+
127
+    private Date spsj;
128
+
129
+    private String bgy;
130
+
131
+    private Integer xzrs;
132
+
133
+    private String xzzhr;
134
+
135
+    private String xzczry;
136
+
137
+    private String fhry;
138
+
139
+    private String lyccdw;
140
+
141
+    private String lyccdwfzr;
142
+
143
+    private String ylccdwlxdh;
144
+
145
+    private Date sqrq;
146
+
147
+    private String xzzydd;
148
+
149
+    public TFumigationForrecord() {
150
+    }
151
+
46 152
     /**
47 153
      * 熏蒸备案表
48 154
      * @return id 熏蒸备案表
@@ -362,4 +468,396 @@ public class TFumigationForrecord {
362 468
     public void setUpdatetime(Date updatetime) {
363 469
         this.updatetime = updatetime;
364 470
     }
471
+
472
+    public List<TFumigationPersonnel> getFumigationPersonnelList() {
473
+        return fumigationPersonnelList;
474
+    }
475
+
476
+    public void setFumigationPersonnelList(List<TFumigationPersonnel> fumigationPersonnelList) {
477
+        this.fumigationPersonnelList = fumigationPersonnelList;
478
+    }
479
+
480
+    public String getStowWay() {
481
+        return stowWay;
482
+    }
483
+
484
+    public void setStowWay(String stowWay) {
485
+        this.stowWay = stowWay;
486
+    }
487
+
488
+    public String getXzzydh() {
489
+        return xzzydh;
490
+    }
491
+
492
+    public void setXzzydh(String xzzydh) {
493
+        this.xzzydh = xzzydh;
494
+    }
495
+
496
+    public String getCfdm() {
497
+        return cfdm;
498
+    }
499
+
500
+    public void setCfdm(String cfdm) {
501
+        this.cfdm = cfdm;
502
+    }
503
+
504
+    public String getHcjcdh() {
505
+        return hcjcdh;
506
+    }
507
+
508
+    public void setHcjcdh(String hcjcdh) {
509
+        this.hcjcdh = hcjcdh;
510
+    }
511
+
512
+    public Integer getDjcxz() {
513
+        return djcxz;
514
+    }
515
+
516
+    public void setDjcxz(Integer djcxz) {
517
+        this.djcxz = djcxz;
518
+    }
519
+
520
+    public String getCgxzfs() {
521
+        return cgxzfs;
522
+    }
523
+
524
+    public void setCgxzfs(String cgxzfs) {
525
+        this.cgxzfs = cgxzfs;
526
+    }
527
+
528
+    public String getHlxzfs() {
529
+        return hlxzfs;
530
+    }
531
+
532
+    public void setHlxzfs(String hlxzfs) {
533
+        this.hlxzfs = hlxzfs;
534
+    }
535
+
536
+    public String getHlxzynhljsjh() {
537
+        return hlxzynhljsjh;
538
+    }
539
+
540
+    public void setHlxzynhljsjh(String hlxzynhljsjh) {
541
+        this.hlxzynhljsjh = hlxzynhljsjh;
542
+    }
543
+
544
+    public String getXzfazd() {
545
+        return xzfazd;
546
+    }
547
+
548
+    public void setXzfazd(String xzfazd) {
549
+        this.xzfazd = xzfazd;
550
+    }
551
+
552
+    public String getXzfaqcr() {
553
+        return xzfaqcr;
554
+    }
555
+
556
+    public void setXzfaqcr(String xzfaqcr) {
557
+        this.xzfaqcr = xzfaqcr;
558
+    }
559
+
560
+    public String getXzfapzr() {
561
+        return xzfapzr;
562
+    }
563
+
564
+    public void setXzfapzr(String xzfapzr) {
565
+        this.xzfapzr = xzfapzr;
566
+    }
567
+
568
+    public String getXzfabbqk() {
569
+        return xzfabbqk;
570
+    }
571
+
572
+    public void setXzfabbqk(String xzfabbqk) {
573
+        this.xzfabbqk = xzfabbqk;
574
+    }
575
+
576
+    public String getSyryzzqk() {
577
+        return syryzzqk;
578
+    }
579
+
580
+    public void setSyryzzqk(String syryzzqk) {
581
+        this.syryzzqk = syryzzqk;
582
+    }
583
+
584
+    public String getSyzzsh() {
585
+        return syzzsh;
586
+    }
587
+
588
+    public void setSyzzsh(String syzzsh) {
589
+        this.syzzsh = syzzsh;
590
+    }
591
+
592
+    public String getYjmc() {
593
+        return yjmc;
594
+    }
595
+
596
+    public void setYjmc(String yjmc) {
597
+        this.yjmc = yjmc;
598
+    }
599
+
600
+    public String getJx() {
601
+        return jx;
602
+    }
603
+
604
+    public void setJx(String jx) {
605
+        this.jx = jx;
606
+    }
607
+
608
+    public BigDecimal getNd() {
609
+        return nd;
610
+    }
611
+
612
+    public void setNd(BigDecimal nd) {
613
+        this.nd = nd;
614
+    }
615
+
616
+    public BigDecimal getLddwyyl() {
617
+        return lddwyyl;
618
+    }
619
+
620
+    public void setLddwyyl(BigDecimal lddwyyl) {
621
+        this.lddwyyl = lddwyyl;
622
+    }
623
+
624
+    public BigDecimal getKjdwyyl() {
625
+        return kjdwyyl;
626
+    }
627
+
628
+    public void setKjdwyyl(BigDecimal kjdwyyl) {
629
+        this.kjdwyyl = kjdwyyl;
630
+    }
631
+
632
+    public BigDecimal getZyyl() {
633
+        return zyyl;
634
+    }
635
+
636
+    public void setZyyl(BigDecimal zyyl) {
637
+        this.zyyl = zyyl;
638
+    }
639
+
640
+    public String getSyff() {
641
+        return syff;
642
+    }
643
+
644
+    public void setSyff(String syff) {
645
+        this.syff = syff;
646
+    }
647
+
648
+    public String getLspz() {
649
+        return lspz;
650
+    }
651
+
652
+    public void setLspz(String lspz) {
653
+        this.lspz = lspz;
654
+    }
655
+
656
+    public BigDecimal getLssl() {
657
+        return lssl;
658
+    }
659
+
660
+    public void setLssl(BigDecimal lssl) {
661
+        this.lssl = lssl;
662
+    }
663
+
664
+    public String getLyxz() {
665
+        return lyxz;
666
+    }
667
+
668
+    public void setLyxz(String lyxz) {
669
+        this.lyxz = lyxz;
670
+    }
671
+
672
+    public BigDecimal getLysf() {
673
+        return lysf;
674
+    }
675
+
676
+    public void setLysf(BigDecimal lysf) {
677
+        this.lysf = lysf;
678
+    }
679
+
680
+    public String getDzfs() {
681
+        return dzfs;
682
+    }
683
+
684
+    public void setDzfs(String dzfs) {
685
+        this.dzfs = dzfs;
686
+    }
687
+
688
+    public String getZyhc() {
689
+        return zyhc;
690
+    }
691
+
692
+    public void setZyhc(String zyhc) {
693
+        this.zyhc = zyhc;
694
+    }
695
+
696
+    public String getCkmd() {
697
+        return ckmd;
698
+    }
699
+
700
+    public void setCkmd(String ckmd) {
701
+        this.ckmd = ckmd;
702
+    }
703
+
704
+    public Integer getHouseId() {
705
+        return houseId;
706
+    }
707
+
708
+    public void setHouseId(Integer houseId) {
709
+        this.houseId = houseId;
710
+    }
711
+
712
+    public Integer getState() {
713
+        return state;
714
+    }
715
+
716
+    public void setState(Integer state) {
717
+        this.state = state;
718
+    }
719
+
720
+    public String getCfmc() {
721
+        return cfmc;
722
+    }
723
+
724
+    public void setCfmc(String cfmc) {
725
+        this.cfmc = cfmc;
726
+    }
727
+
728
+    public Date getYjyxq() {
729
+        return yjyxq;
730
+    }
731
+
732
+    public void setYjyxq(Date yjyxq) {
733
+        this.yjyxq = yjyxq;
734
+    }
735
+
736
+    public BigDecimal getLqsl() {
737
+        return lqsl;
738
+    }
739
+
740
+    public void setLqsl(BigDecimal lqsl) {
741
+        this.lqsl = lqsl;
742
+    }
743
+
744
+    public BigDecimal getSysl() {
745
+        return sysl;
746
+    }
747
+
748
+    public void setSysl(BigDecimal sysl) {
749
+        this.sysl = sysl;
750
+    }
751
+
752
+    public String getLqr() {
753
+        return lqr;
754
+    }
755
+
756
+    public void setLqr(String lqr) {
757
+        this.lqr = lqr;
758
+    }
759
+
760
+    public Date getLqsj() {
761
+        return lqsj;
762
+    }
763
+
764
+    public void setLqsj(Date lqsj) {
765
+        this.lqsj = lqsj;
766
+    }
767
+
768
+    public String getSpr() {
769
+        return spr;
770
+    }
771
+
772
+    public void setSpr(String spr) {
773
+        this.spr = spr;
774
+    }
775
+
776
+    public Date getSpsj() {
777
+        return spsj;
778
+    }
779
+
780
+    public void setSpsj(Date spsj) {
781
+        this.spsj = spsj;
782
+    }
783
+
784
+    public String getBgy() {
785
+        return bgy;
786
+    }
787
+
788
+    public void setBgy(String bgy) {
789
+        this.bgy = bgy;
790
+    }
791
+
792
+    public Integer getXzrs() {
793
+        return xzrs;
794
+    }
795
+
796
+    public void setXzrs(Integer xzrs) {
797
+        this.xzrs = xzrs;
798
+    }
799
+
800
+    public String getXzzhr() {
801
+        return xzzhr;
802
+    }
803
+
804
+    public void setXzzhr(String xzzhr) {
805
+        this.xzzhr = xzzhr;
806
+    }
807
+
808
+    public String getXzczry() {
809
+        return xzczry;
810
+    }
811
+
812
+    public void setXzczry(String xzczry) {
813
+        this.xzczry = xzczry;
814
+    }
815
+
816
+    public String getFhry() {
817
+        return fhry;
818
+    }
819
+
820
+    public void setFhry(String fhry) {
821
+        this.fhry = fhry;
822
+    }
823
+
824
+    public String getLyccdw() {
825
+        return lyccdw;
826
+    }
827
+
828
+    public void setLyccdw(String lyccdw) {
829
+        this.lyccdw = lyccdw;
830
+    }
831
+
832
+    public String getLyccdwfzr() {
833
+        return lyccdwfzr;
834
+    }
835
+
836
+    public void setLyccdwfzr(String lyccdwfzr) {
837
+        this.lyccdwfzr = lyccdwfzr;
838
+    }
839
+
840
+    public String getYlccdwlxdh() {
841
+        return ylccdwlxdh;
842
+    }
843
+
844
+    public void setYlccdwlxdh(String ylccdwlxdh) {
845
+        this.ylccdwlxdh = ylccdwlxdh;
846
+    }
847
+
848
+    public Date getSqrq() {
849
+        return sqrq;
850
+    }
851
+
852
+    public void setSqrq(Date sqrq) {
853
+        this.sqrq = sqrq;
854
+    }
855
+
856
+    public String getXzzydd() {
857
+        return xzzydd;
858
+    }
859
+
860
+    public void setXzzydd(String xzzydd) {
861
+        this.xzzydd = xzzydd;
862
+    }
365 863
 }

File diff suppressed because it is too large
+ 3200 - 0
src/main/java/com/chinaitop/depot/fumigation/model/TFumigationForrecordExample.java