WaterStationsPatrolMapper.xml
61.7 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
<?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.tianbo.warehouse.dao.WaterStationsPatrolMapper" >
<resultMap id="BaseResultMap" type="com.tianbo.warehouse.model.WaterStationsPatrol" >
<id column="id" property="id" jdbcType="VARCHAR" />
<result column="checkProjectControlRommWaterSupplySystem" property="checkprojectcontrolrommwatersupplysystem" jdbcType="VARCHAR" />
<result column="checkProjectControlRommSecuritySystem" property="checkprojectcontrolrommsecuritysystem" jdbcType="VARCHAR" />
<result column="checkProjectControlRommRunningRecord" property="checkprojectcontrolrommrunningrecord" jdbcType="VARCHAR" />
<result column="checkProjectControlRommDocumentHolder" property="checkprojectcontrolrommdocumentholder" jdbcType="VARCHAR" />
<result column="checkProjectControlRommGround" property="checkprojectcontrolrommground" jdbcType="VARCHAR" />
<result column="checkProjectControlRommResponsiblePerson" property="checkprojectcontrolrommresponsibleperson" jdbcType="VARCHAR" />
<result column="checkProjectControlRommnote" property="checkprojectcontrolrommnote" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionShow" property="checkprojectfrequencyconversionshow" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionClose" property="checkprojectfrequencyconversionclose" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionSanitation" property="checkprojectfrequencyconversionsanitation" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionResponsiblePerson" property="checkprojectfrequencyconversionresponsibleperson" jdbcType="VARCHAR" />
<result column="checkProjectFrequencyConversionNote" property="checkprojectfrequencyconversionnote" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentPowerSupply" property="checkprojectmeterbetweenturbidityinstrumentpowersupply" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentShow" property="checkprojectmeterbetweenturbidityinstrumentshow" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentAppearance" property="checkprojectmeterbetweenturbidityinstrumentappearance" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentRange" property="checkprojectmeterbetweenturbidityinstrumentrange" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentDetection" property="checkprojectmeterbetweenturbidityinstrumentdetection" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson" property="checkprojectmeterbetweenturbidityinstrumentresponsibleperson" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenTurbidityInstrumentNote" property="checkprojectmeterbetweenturbidityinstrumentnote" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterPowerSupply" property="checkprojectmeterbetweenflowmeterpowersupply" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterShow" property="checkprojectmeterbetweenflowmetershow" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterAppearance" property="checkprojectmeterbetweenflowmeterappearance" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterResponsiblePerson" property="checkprojectmeterbetweenflowmeterresponsibleperson" jdbcType="VARCHAR" />
<result column="checkProjectMeterBetweenFlowMeterNote" property="checkprojectmeterbetweenflowmeternote" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentPipeline" property="residualchlorineinstrumentpipeline" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentPowerSupply" property="residualchlorineinstrumentpowersupply" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentShow" property="residualchlorineinstrumentshow" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentAppearance" property="residualchlorineinstrumentappearance" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentPipelinMakeWater" property="residualchlorineinstrumentpipelinmakewater" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentEquipment" property="residualchlorineinstrumentequipment" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentGroundSanitation" property="residualchlorineinstrumentgroundsanitation" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentResponsiblePerson" property="residualchlorineinstrumentresponsibleperson" jdbcType="VARCHAR" />
<result column="residualChlorineInstrumentNote" property="residualchlorineinstrumentnote" jdbcType="VARCHAR" />
<result column="boosterPumpRoomWaterPump" property="boosterpumproomwaterpump" jdbcType="VARCHAR" />
<result column="boosterPumpRoomBearing" property="boosterpumproombearing" jdbcType="VARCHAR" />
<result column="boosterPumpRoomTheValue" property="boosterpumproomthevalue" jdbcType="VARCHAR" />
<result column="boosterPumpRoomPumpBody" property="boosterpumproompumpbody" jdbcType="VARCHAR" />
<result column="boosterPumpRoomNamePlate" property="boosterpumproomnameplate" jdbcType="VARCHAR" />
<result column="boosterPumpRoomPacking" property="boosterpumproompacking" jdbcType="VARCHAR" />
<result column="boosterPumpRoomShow" property="boosterpumproomshow" jdbcType="VARCHAR" />
<result column="boosterPumpRoomFan" property="boosterpumproomfan" jdbcType="VARCHAR" />
<result column="boosterPumpRoomDrainage" property="boosterpumproomdrainage" jdbcType="VARCHAR" />
<result column="boosterPumpRoomSanitation" property="boosterpumproomsanitation" jdbcType="VARCHAR" />
<result column="boosterPumpRoomResponsiblePerson" property="boosterpumproomresponsibleperson" jdbcType="VARCHAR" />
<result column="boosterPumpRoomNote" property="boosterpumproomnote" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsStairs" property="clearwaterreserviorsstairs" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsVent" property="clearwaterreserviorsvent" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsPoolRoof" property="clearwaterreserviorspoolroof" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsSanitation" property="clearwaterreserviorssanitation" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsPumpBody" property="clearwaterreserviorspumpbody" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsResponsiblePerson" property="clearwaterreserviorsresponsibleperson" jdbcType="VARCHAR" />
<result column="clearWaterReserviorsNote" property="clearwaterreserviorsnote" jdbcType="VARCHAR" />
<result column="betweenChlorineEquipment" property="betweenchlorineequipment" jdbcType="VARCHAR" />
<result column="betweenChlorinePipe" property="betweenchlorinepipe" jdbcType="VARCHAR" />
<result column="betweenChlorineDosingPump" property="betweenchlorinedosingpump" jdbcType="VARCHAR" />
<result column="betweenChlorineTraffic" property="betweenchlorinetraffic" jdbcType="VARCHAR" />
<result column="betweenChlorineFan" property="betweenchlorinefan" jdbcType="VARCHAR" />
<result column="betweenChlorineSanitation" property="betweenchlorinesanitation" jdbcType="VARCHAR" />
<result column="betweenChlorineResponsiblePerson" property="betweenchlorineresponsibleperson" jdbcType="VARCHAR" />
<result column="betweenChlorineNote" property="betweenchlorinenote" jdbcType="VARCHAR" />
<result column="groundEnvironmentWellLIDS" property="groundenvironmentwelllids" jdbcType="VARCHAR" />
<result column="groundEnvironmentDrainagen" property="groundenvironmentdrainagen" jdbcType="VARCHAR" />
<result column="groundEnvironmentWaterSupply" property="groundenvironmentwatersupply" jdbcType="VARCHAR" />
<result column="groundEnvironmentCable" property="groundenvironmentcable" jdbcType="VARCHAR" />
<result column="groundEnvironmentRoad" property="groundenvironmentroad" jdbcType="VARCHAR" />
<result column="groundEnvironmentResponsiblePerson" property="groundenvironmentresponsibleperson" jdbcType="VARCHAR" />
<result column="groundEnvironmentNote" property="groundenvironmentnote" jdbcType="VARCHAR" />
<result column="groundSecurityIllegal" property="groundsecurityillegal" jdbcType="VARCHAR" />
<result column="groundSecurityFire" property="groundsecurityfire" jdbcType="VARCHAR" />
<result column="groundSecurityRats" property="groundsecurityrats" jdbcType="VARCHAR" />
<result column="groundSecuritySuspiciousPersonnel" property="groundsecuritysuspiciouspersonnel" jdbcType="VARCHAR" />
<result column="groundSecurityResponsiblePerson" property="groundsecurityresponsibleperson" jdbcType="VARCHAR" />
<result column="groundSecurityNote" property="groundsecuritynote" jdbcType="VARCHAR" />
<result column="securityToolEmergency" property="securitytoolemergency" jdbcType="VARCHAR" />
<result column="securityToolFloodControlAnd" property="securitytoolfloodcontroland" jdbcType="VARCHAR" />
<result column="securityToolProtective" property="securitytoolprotective" jdbcType="VARCHAR" />
<result column="securityToolMainteance" property="securitytoolmainteance" jdbcType="VARCHAR" />
<result column="securityToolResponsiblePerson" property="securitytoolresponsibleperson" jdbcType="VARCHAR" />
<result column="securityToolNote" property="securitytoolnote" jdbcType="VARCHAR" />
<result column="userId" property="userid" jdbcType="INTEGER" />
<result column="creatTime" property="creattime" jdbcType="TIMESTAMP" />
<result column="reamke1" property="reamke1" jdbcType="VARCHAR" />
<result column="reamke2" property="reamke2" jdbcType="VARCHAR" />
<result column="reamke3" property="reamke3" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List" >
id, checkProjectControlRommWaterSupplySystem, checkProjectControlRommSecuritySystem,
checkProjectControlRommRunningRecord, checkProjectControlRommDocumentHolder, checkProjectControlRommGround,
checkProjectControlRommResponsiblePerson, checkProjectControlRommnote, checkProjectFrequencyConversionShow,
checkProjectFrequencyConversionClose, checkProjectFrequencyConversionSanitation,
checkProjectFrequencyConversionResponsiblePerson, checkProjectFrequencyConversionNote,
checkProjectMeterBetweenTurbidityInstrumentPowerSupply, checkProjectMeterBetweenTurbidityInstrumentShow,
checkProjectMeterBetweenTurbidityInstrumentAppearance, checkProjectMeterBetweenTurbidityInstrumentRange,
checkProjectMeterBetweenTurbidityInstrumentDetection, checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
checkProjectMeterBetweenTurbidityInstrumentNote, checkProjectMeterBetweenFlowMeterPowerSupply,
checkProjectMeterBetweenFlowMeterShow, checkProjectMeterBetweenFlowMeterAppearance,
checkProjectMeterBetweenFlowMeterResponsiblePerson, checkProjectMeterBetweenFlowMeterNote,
residualChlorineInstrumentPipeline, residualChlorineInstrumentPowerSupply, residualChlorineInstrumentShow,
residualChlorineInstrumentAppearance, residualChlorineInstrumentPipelinMakeWater,
residualChlorineInstrumentEquipment, residualChlorineInstrumentGroundSanitation,
residualChlorineInstrumentResponsiblePerson, residualChlorineInstrumentNote, boosterPumpRoomWaterPump,
boosterPumpRoomBearing, boosterPumpRoomTheValue, boosterPumpRoomPumpBody, boosterPumpRoomNamePlate,
boosterPumpRoomPacking, boosterPumpRoomShow, boosterPumpRoomFan, boosterPumpRoomDrainage,
boosterPumpRoomSanitation, boosterPumpRoomResponsiblePerson, boosterPumpRoomNote,
clearWaterReserviorsStairs, clearWaterReserviorsVent, clearWaterReserviorsPoolRoof,
clearWaterReserviorsSanitation, clearWaterReserviorsPumpBody, clearWaterReserviorsResponsiblePerson,
clearWaterReserviorsNote, betweenChlorineEquipment, betweenChlorinePipe, betweenChlorineDosingPump,
betweenChlorineTraffic, betweenChlorineFan, betweenChlorineSanitation, betweenChlorineResponsiblePerson,
betweenChlorineNote, groundEnvironmentWellLIDS, groundEnvironmentDrainagen, groundEnvironmentWaterSupply,
groundEnvironmentCable, groundEnvironmentRoad, groundEnvironmentResponsiblePerson,
groundEnvironmentNote, groundSecurityIllegal, groundSecurityFire, groundSecurityRats,
groundSecuritySuspiciousPersonnel, groundSecurityResponsiblePerson, groundSecurityNote,
securityToolEmergency, securityToolFloodControlAnd, securityToolProtective, securityToolMainteance,
securityToolResponsiblePerson, securityToolNote, userId, creatTime, reamke1, reamke2,
reamke3
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
select
<include refid="Base_Column_List" />
from water_stations_patrol
where id = #{id,jdbcType=VARCHAR}
</select>
<select id="findAll" resultMap="BaseResultMap" >
select
<include refid="Base_Column_List" />
from water_stations_patrol
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
delete from water_stations_patrol
where id = #{id,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
insert into water_stations_patrol (id, checkProjectControlRommWaterSupplySystem,
checkProjectControlRommSecuritySystem, checkProjectControlRommRunningRecord,
checkProjectControlRommDocumentHolder, checkProjectControlRommGround,
checkProjectControlRommResponsiblePerson, checkProjectControlRommnote,
checkProjectFrequencyConversionShow, checkProjectFrequencyConversionClose,
checkProjectFrequencyConversionSanitation, checkProjectFrequencyConversionResponsiblePerson,
checkProjectFrequencyConversionNote, checkProjectMeterBetweenTurbidityInstrumentPowerSupply,
checkProjectMeterBetweenTurbidityInstrumentShow, checkProjectMeterBetweenTurbidityInstrumentAppearance,
checkProjectMeterBetweenTurbidityInstrumentRange, checkProjectMeterBetweenTurbidityInstrumentDetection,
checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
checkProjectMeterBetweenTurbidityInstrumentNote, checkProjectMeterBetweenFlowMeterPowerSupply,
checkProjectMeterBetweenFlowMeterShow, checkProjectMeterBetweenFlowMeterAppearance,
checkProjectMeterBetweenFlowMeterResponsiblePerson, checkProjectMeterBetweenFlowMeterNote,
residualChlorineInstrumentPipeline, residualChlorineInstrumentPowerSupply,
residualChlorineInstrumentShow, residualChlorineInstrumentAppearance,
residualChlorineInstrumentPipelinMakeWater, residualChlorineInstrumentEquipment,
residualChlorineInstrumentGroundSanitation, residualChlorineInstrumentResponsiblePerson,
residualChlorineInstrumentNote, boosterPumpRoomWaterPump,
boosterPumpRoomBearing, boosterPumpRoomTheValue,
boosterPumpRoomPumpBody, boosterPumpRoomNamePlate,
boosterPumpRoomPacking, boosterPumpRoomShow,
boosterPumpRoomFan, boosterPumpRoomDrainage,
boosterPumpRoomSanitation, boosterPumpRoomResponsiblePerson,
boosterPumpRoomNote, clearWaterReserviorsStairs,
clearWaterReserviorsVent, clearWaterReserviorsPoolRoof,
clearWaterReserviorsSanitation, clearWaterReserviorsPumpBody,
clearWaterReserviorsResponsiblePerson, clearWaterReserviorsNote,
betweenChlorineEquipment, betweenChlorinePipe,
betweenChlorineDosingPump, betweenChlorineTraffic,
betweenChlorineFan, betweenChlorineSanitation,
betweenChlorineResponsiblePerson, betweenChlorineNote,
groundEnvironmentWellLIDS, groundEnvironmentDrainagen,
groundEnvironmentWaterSupply, groundEnvironmentCable,
groundEnvironmentRoad, groundEnvironmentResponsiblePerson,
groundEnvironmentNote, groundSecurityIllegal,
groundSecurityFire, groundSecurityRats,
groundSecuritySuspiciousPersonnel, groundSecurityResponsiblePerson,
groundSecurityNote, securityToolEmergency,
securityToolFloodControlAnd, securityToolProtective,
securityToolMainteance, securityToolResponsiblePerson,
securityToolNote, userId, creatTime,
reamke1, reamke2, reamke3
)
values (#{id,jdbcType=VARCHAR}, #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
#{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR}, #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
#{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR}, #{checkprojectcontrolrommground,jdbcType=VARCHAR},
#{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR}, #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
#{checkprojectfrequencyconversionshow,jdbcType=VARCHAR}, #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
#{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR}, #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
#{checkprojectfrequencyconversionnote,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
#{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
#{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR}, #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
#{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
#{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
#{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
#{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR}, #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
#{residualchlorineinstrumentpipeline,jdbcType=VARCHAR}, #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
#{residualchlorineinstrumentshow,jdbcType=VARCHAR}, #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
#{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR}, #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
#{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR}, #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
#{residualchlorineinstrumentnote,jdbcType=VARCHAR}, #{boosterpumproomwaterpump,jdbcType=VARCHAR},
#{boosterpumproombearing,jdbcType=VARCHAR}, #{boosterpumproomthevalue,jdbcType=VARCHAR},
#{boosterpumproompumpbody,jdbcType=VARCHAR}, #{boosterpumproomnameplate,jdbcType=VARCHAR},
#{boosterpumproompacking,jdbcType=VARCHAR}, #{boosterpumproomshow,jdbcType=VARCHAR},
#{boosterpumproomfan,jdbcType=VARCHAR}, #{boosterpumproomdrainage,jdbcType=VARCHAR},
#{boosterpumproomsanitation,jdbcType=VARCHAR}, #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
#{boosterpumproomnote,jdbcType=VARCHAR}, #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
#{clearwaterreserviorsvent,jdbcType=VARCHAR}, #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
#{clearwaterreserviorssanitation,jdbcType=VARCHAR}, #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
#{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR}, #{clearwaterreserviorsnote,jdbcType=VARCHAR},
#{betweenchlorineequipment,jdbcType=VARCHAR}, #{betweenchlorinepipe,jdbcType=VARCHAR},
#{betweenchlorinedosingpump,jdbcType=VARCHAR}, #{betweenchlorinetraffic,jdbcType=VARCHAR},
#{betweenchlorinefan,jdbcType=VARCHAR}, #{betweenchlorinesanitation,jdbcType=VARCHAR},
#{betweenchlorineresponsibleperson,jdbcType=VARCHAR}, #{betweenchlorinenote,jdbcType=VARCHAR},
#{groundenvironmentwelllids,jdbcType=VARCHAR}, #{groundenvironmentdrainagen,jdbcType=VARCHAR},
#{groundenvironmentwatersupply,jdbcType=VARCHAR}, #{groundenvironmentcable,jdbcType=VARCHAR},
#{groundenvironmentroad,jdbcType=VARCHAR}, #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
#{groundenvironmentnote,jdbcType=VARCHAR}, #{groundsecurityillegal,jdbcType=VARCHAR},
#{groundsecurityfire,jdbcType=VARCHAR}, #{groundsecurityrats,jdbcType=VARCHAR},
#{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR}, #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
#{groundsecuritynote,jdbcType=VARCHAR}, #{securitytoolemergency,jdbcType=VARCHAR},
#{securitytoolfloodcontroland,jdbcType=VARCHAR}, #{securitytoolprotective,jdbcType=VARCHAR},
#{securitytoolmainteance,jdbcType=VARCHAR}, #{securitytoolresponsibleperson,jdbcType=VARCHAR},
#{securitytoolnote,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, #{creattime,jdbcType=TIMESTAMP},
#{reamke1,jdbcType=VARCHAR}, #{reamke2,jdbcType=VARCHAR}, #{reamke3,jdbcType=VARCHAR}
)
</insert>
<insert id="insertSelective" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
insert into water_stations_patrol
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="id != null" >
id,
</if>
<if test="checkprojectcontrolrommwatersupplysystem != null" >
checkProjectControlRommWaterSupplySystem,
</if>
<if test="checkprojectcontrolrommsecuritysystem != null" >
checkProjectControlRommSecuritySystem,
</if>
<if test="checkprojectcontrolrommrunningrecord != null" >
checkProjectControlRommRunningRecord,
</if>
<if test="checkprojectcontrolrommdocumentholder != null" >
checkProjectControlRommDocumentHolder,
</if>
<if test="checkprojectcontrolrommground != null" >
checkProjectControlRommGround,
</if>
<if test="checkprojectcontrolrommresponsibleperson != null" >
checkProjectControlRommResponsiblePerson,
</if>
<if test="checkprojectcontrolrommnote != null" >
checkProjectControlRommnote,
</if>
<if test="checkprojectfrequencyconversionshow != null" >
checkProjectFrequencyConversionShow,
</if>
<if test="checkprojectfrequencyconversionclose != null" >
checkProjectFrequencyConversionClose,
</if>
<if test="checkprojectfrequencyconversionsanitation != null" >
checkProjectFrequencyConversionSanitation,
</if>
<if test="checkprojectfrequencyconversionresponsibleperson != null" >
checkProjectFrequencyConversionResponsiblePerson,
</if>
<if test="checkprojectfrequencyconversionnote != null" >
checkProjectFrequencyConversionNote,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
checkProjectMeterBetweenTurbidityInstrumentPowerSupply,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
checkProjectMeterBetweenTurbidityInstrumentShow,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
checkProjectMeterBetweenTurbidityInstrumentAppearance,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
checkProjectMeterBetweenTurbidityInstrumentRange,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
checkProjectMeterBetweenTurbidityInstrumentDetection,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson,
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
checkProjectMeterBetweenTurbidityInstrumentNote,
</if>
<if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
checkProjectMeterBetweenFlowMeterPowerSupply,
</if>
<if test="checkprojectmeterbetweenflowmetershow != null" >
checkProjectMeterBetweenFlowMeterShow,
</if>
<if test="checkprojectmeterbetweenflowmeterappearance != null" >
checkProjectMeterBetweenFlowMeterAppearance,
</if>
<if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
checkProjectMeterBetweenFlowMeterResponsiblePerson,
</if>
<if test="checkprojectmeterbetweenflowmeternote != null" >
checkProjectMeterBetweenFlowMeterNote,
</if>
<if test="residualchlorineinstrumentpipeline != null" >
residualChlorineInstrumentPipeline,
</if>
<if test="residualchlorineinstrumentpowersupply != null" >
residualChlorineInstrumentPowerSupply,
</if>
<if test="residualchlorineinstrumentshow != null" >
residualChlorineInstrumentShow,
</if>
<if test="residualchlorineinstrumentappearance != null" >
residualChlorineInstrumentAppearance,
</if>
<if test="residualchlorineinstrumentpipelinmakewater != null" >
residualChlorineInstrumentPipelinMakeWater,
</if>
<if test="residualchlorineinstrumentequipment != null" >
residualChlorineInstrumentEquipment,
</if>
<if test="residualchlorineinstrumentgroundsanitation != null" >
residualChlorineInstrumentGroundSanitation,
</if>
<if test="residualchlorineinstrumentresponsibleperson != null" >
residualChlorineInstrumentResponsiblePerson,
</if>
<if test="residualchlorineinstrumentnote != null" >
residualChlorineInstrumentNote,
</if>
<if test="boosterpumproomwaterpump != null" >
boosterPumpRoomWaterPump,
</if>
<if test="boosterpumproombearing != null" >
boosterPumpRoomBearing,
</if>
<if test="boosterpumproomthevalue != null" >
boosterPumpRoomTheValue,
</if>
<if test="boosterpumproompumpbody != null" >
boosterPumpRoomPumpBody,
</if>
<if test="boosterpumproomnameplate != null" >
boosterPumpRoomNamePlate,
</if>
<if test="boosterpumproompacking != null" >
boosterPumpRoomPacking,
</if>
<if test="boosterpumproomshow != null" >
boosterPumpRoomShow,
</if>
<if test="boosterpumproomfan != null" >
boosterPumpRoomFan,
</if>
<if test="boosterpumproomdrainage != null" >
boosterPumpRoomDrainage,
</if>
<if test="boosterpumproomsanitation != null" >
boosterPumpRoomSanitation,
</if>
<if test="boosterpumproomresponsibleperson != null" >
boosterPumpRoomResponsiblePerson,
</if>
<if test="boosterpumproomnote != null" >
boosterPumpRoomNote,
</if>
<if test="clearwaterreserviorsstairs != null" >
clearWaterReserviorsStairs,
</if>
<if test="clearwaterreserviorsvent != null" >
clearWaterReserviorsVent,
</if>
<if test="clearwaterreserviorspoolroof != null" >
clearWaterReserviorsPoolRoof,
</if>
<if test="clearwaterreserviorssanitation != null" >
clearWaterReserviorsSanitation,
</if>
<if test="clearwaterreserviorspumpbody != null" >
clearWaterReserviorsPumpBody,
</if>
<if test="clearwaterreserviorsresponsibleperson != null" >
clearWaterReserviorsResponsiblePerson,
</if>
<if test="clearwaterreserviorsnote != null" >
clearWaterReserviorsNote,
</if>
<if test="betweenchlorineequipment != null" >
betweenChlorineEquipment,
</if>
<if test="betweenchlorinepipe != null" >
betweenChlorinePipe,
</if>
<if test="betweenchlorinedosingpump != null" >
betweenChlorineDosingPump,
</if>
<if test="betweenchlorinetraffic != null" >
betweenChlorineTraffic,
</if>
<if test="betweenchlorinefan != null" >
betweenChlorineFan,
</if>
<if test="betweenchlorinesanitation != null" >
betweenChlorineSanitation,
</if>
<if test="betweenchlorineresponsibleperson != null" >
betweenChlorineResponsiblePerson,
</if>
<if test="betweenchlorinenote != null" >
betweenChlorineNote,
</if>
<if test="groundenvironmentwelllids != null" >
groundEnvironmentWellLIDS,
</if>
<if test="groundenvironmentdrainagen != null" >
groundEnvironmentDrainagen,
</if>
<if test="groundenvironmentwatersupply != null" >
groundEnvironmentWaterSupply,
</if>
<if test="groundenvironmentcable != null" >
groundEnvironmentCable,
</if>
<if test="groundenvironmentroad != null" >
groundEnvironmentRoad,
</if>
<if test="groundenvironmentresponsibleperson != null" >
groundEnvironmentResponsiblePerson,
</if>
<if test="groundenvironmentnote != null" >
groundEnvironmentNote,
</if>
<if test="groundsecurityillegal != null" >
groundSecurityIllegal,
</if>
<if test="groundsecurityfire != null" >
groundSecurityFire,
</if>
<if test="groundsecurityrats != null" >
groundSecurityRats,
</if>
<if test="groundsecuritysuspiciouspersonnel != null" >
groundSecuritySuspiciousPersonnel,
</if>
<if test="groundsecurityresponsibleperson != null" >
groundSecurityResponsiblePerson,
</if>
<if test="groundsecuritynote != null" >
groundSecurityNote,
</if>
<if test="securitytoolemergency != null" >
securityToolEmergency,
</if>
<if test="securitytoolfloodcontroland != null" >
securityToolFloodControlAnd,
</if>
<if test="securitytoolprotective != null" >
securityToolProtective,
</if>
<if test="securitytoolmainteance != null" >
securityToolMainteance,
</if>
<if test="securitytoolresponsibleperson != null" >
securityToolResponsiblePerson,
</if>
<if test="securitytoolnote != null" >
securityToolNote,
</if>
<if test="userid != null" >
userId,
</if>
<if test="creattime != null" >
creatTime,
</if>
<if test="reamke1 != null" >
reamke1,
</if>
<if test="reamke2 != null" >
reamke2,
</if>
<if test="reamke3 != null" >
reamke3,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="id != null" >
#{id,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommwatersupplysystem != null" >
#{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommsecuritysystem != null" >
#{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommrunningrecord != null" >
#{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommdocumentholder != null" >
#{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommground != null" >
#{checkprojectcontrolrommground,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommresponsibleperson != null" >
#{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommnote != null" >
#{checkprojectcontrolrommnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionshow != null" >
#{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionclose != null" >
#{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionsanitation != null" >
#{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionresponsibleperson != null" >
#{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionnote != null" >
#{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
#{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
#{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
#{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
#{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
#{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
#{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
#{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
#{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmetershow != null" >
#{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterappearance != null" >
#{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
#{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeternote != null" >
#{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpipeline != null" >
#{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpowersupply != null" >
#{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentshow != null" >
#{residualchlorineinstrumentshow,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentappearance != null" >
#{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpipelinmakewater != null" >
#{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentequipment != null" >
#{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentgroundsanitation != null" >
#{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentresponsibleperson != null" >
#{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentnote != null" >
#{residualchlorineinstrumentnote,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomwaterpump != null" >
#{boosterpumproomwaterpump,jdbcType=VARCHAR},
</if>
<if test="boosterpumproombearing != null" >
#{boosterpumproombearing,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomthevalue != null" >
#{boosterpumproomthevalue,jdbcType=VARCHAR},
</if>
<if test="boosterpumproompumpbody != null" >
#{boosterpumproompumpbody,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomnameplate != null" >
#{boosterpumproomnameplate,jdbcType=VARCHAR},
</if>
<if test="boosterpumproompacking != null" >
#{boosterpumproompacking,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomshow != null" >
#{boosterpumproomshow,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomfan != null" >
#{boosterpumproomfan,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomdrainage != null" >
#{boosterpumproomdrainage,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomsanitation != null" >
#{boosterpumproomsanitation,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomresponsibleperson != null" >
#{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomnote != null" >
#{boosterpumproomnote,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsstairs != null" >
#{clearwaterreserviorsstairs,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsvent != null" >
#{clearwaterreserviorsvent,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorspoolroof != null" >
#{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorssanitation != null" >
#{clearwaterreserviorssanitation,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorspumpbody != null" >
#{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsresponsibleperson != null" >
#{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsnote != null" >
#{clearwaterreserviorsnote,jdbcType=VARCHAR},
</if>
<if test="betweenchlorineequipment != null" >
#{betweenchlorineequipment,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinepipe != null" >
#{betweenchlorinepipe,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinedosingpump != null" >
#{betweenchlorinedosingpump,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinetraffic != null" >
#{betweenchlorinetraffic,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinefan != null" >
#{betweenchlorinefan,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinesanitation != null" >
#{betweenchlorinesanitation,jdbcType=VARCHAR},
</if>
<if test="betweenchlorineresponsibleperson != null" >
#{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinenote != null" >
#{betweenchlorinenote,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentwelllids != null" >
#{groundenvironmentwelllids,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentdrainagen != null" >
#{groundenvironmentdrainagen,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentwatersupply != null" >
#{groundenvironmentwatersupply,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentcable != null" >
#{groundenvironmentcable,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentroad != null" >
#{groundenvironmentroad,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentresponsibleperson != null" >
#{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentnote != null" >
#{groundenvironmentnote,jdbcType=VARCHAR},
</if>
<if test="groundsecurityillegal != null" >
#{groundsecurityillegal,jdbcType=VARCHAR},
</if>
<if test="groundsecurityfire != null" >
#{groundsecurityfire,jdbcType=VARCHAR},
</if>
<if test="groundsecurityrats != null" >
#{groundsecurityrats,jdbcType=VARCHAR},
</if>
<if test="groundsecuritysuspiciouspersonnel != null" >
#{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
</if>
<if test="groundsecurityresponsibleperson != null" >
#{groundsecurityresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="groundsecuritynote != null" >
#{groundsecuritynote,jdbcType=VARCHAR},
</if>
<if test="securitytoolemergency != null" >
#{securitytoolemergency,jdbcType=VARCHAR},
</if>
<if test="securitytoolfloodcontroland != null" >
#{securitytoolfloodcontroland,jdbcType=VARCHAR},
</if>
<if test="securitytoolprotective != null" >
#{securitytoolprotective,jdbcType=VARCHAR},
</if>
<if test="securitytoolmainteance != null" >
#{securitytoolmainteance,jdbcType=VARCHAR},
</if>
<if test="securitytoolresponsibleperson != null" >
#{securitytoolresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="securitytoolnote != null" >
#{securitytoolnote,jdbcType=VARCHAR},
</if>
<if test="userid != null" >
#{userid,jdbcType=INTEGER},
</if>
<if test="creattime != null" >
#{creattime,jdbcType=TIMESTAMP},
</if>
<if test="reamke1 != null" >
#{reamke1,jdbcType=VARCHAR},
</if>
<if test="reamke2 != null" >
#{reamke2,jdbcType=VARCHAR},
</if>
<if test="reamke3 != null" >
#{reamke3,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
update water_stations_patrol
<set >
<if test="checkprojectcontrolrommwatersupplysystem != null" >
checkProjectControlRommWaterSupplySystem = #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommsecuritysystem != null" >
checkProjectControlRommSecuritySystem = #{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommrunningrecord != null" >
checkProjectControlRommRunningRecord = #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommdocumentholder != null" >
checkProjectControlRommDocumentHolder = #{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommground != null" >
checkProjectControlRommGround = #{checkprojectcontrolrommground,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommresponsibleperson != null" >
checkProjectControlRommResponsiblePerson = #{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectcontrolrommnote != null" >
checkProjectControlRommnote = #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionshow != null" >
checkProjectFrequencyConversionShow = #{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionclose != null" >
checkProjectFrequencyConversionClose = #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionsanitation != null" >
checkProjectFrequencyConversionSanitation = #{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionresponsibleperson != null" >
checkProjectFrequencyConversionResponsiblePerson = #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectfrequencyconversionnote != null" >
checkProjectFrequencyConversionNote = #{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentpowersupply != null" >
checkProjectMeterBetweenTurbidityInstrumentPowerSupply = #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentshow != null" >
checkProjectMeterBetweenTurbidityInstrumentShow = #{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentappearance != null" >
checkProjectMeterBetweenTurbidityInstrumentAppearance = #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentrange != null" >
checkProjectMeterBetweenTurbidityInstrumentRange = #{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentdetection != null" >
checkProjectMeterBetweenTurbidityInstrumentDetection = #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentresponsibleperson != null" >
checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson = #{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenturbidityinstrumentnote != null" >
checkProjectMeterBetweenTurbidityInstrumentNote = #{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterpowersupply != null" >
checkProjectMeterBetweenFlowMeterPowerSupply = #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmetershow != null" >
checkProjectMeterBetweenFlowMeterShow = #{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterappearance != null" >
checkProjectMeterBetweenFlowMeterAppearance = #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeterresponsibleperson != null" >
checkProjectMeterBetweenFlowMeterResponsiblePerson = #{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="checkprojectmeterbetweenflowmeternote != null" >
checkProjectMeterBetweenFlowMeterNote = #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpipeline != null" >
residualChlorineInstrumentPipeline = #{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpowersupply != null" >
residualChlorineInstrumentPowerSupply = #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentshow != null" >
residualChlorineInstrumentShow = #{residualchlorineinstrumentshow,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentappearance != null" >
residualChlorineInstrumentAppearance = #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentpipelinmakewater != null" >
residualChlorineInstrumentPipelinMakeWater = #{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentequipment != null" >
residualChlorineInstrumentEquipment = #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentgroundsanitation != null" >
residualChlorineInstrumentGroundSanitation = #{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentresponsibleperson != null" >
residualChlorineInstrumentResponsiblePerson = #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="residualchlorineinstrumentnote != null" >
residualChlorineInstrumentNote = #{residualchlorineinstrumentnote,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomwaterpump != null" >
boosterPumpRoomWaterPump = #{boosterpumproomwaterpump,jdbcType=VARCHAR},
</if>
<if test="boosterpumproombearing != null" >
boosterPumpRoomBearing = #{boosterpumproombearing,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomthevalue != null" >
boosterPumpRoomTheValue = #{boosterpumproomthevalue,jdbcType=VARCHAR},
</if>
<if test="boosterpumproompumpbody != null" >
boosterPumpRoomPumpBody = #{boosterpumproompumpbody,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomnameplate != null" >
boosterPumpRoomNamePlate = #{boosterpumproomnameplate,jdbcType=VARCHAR},
</if>
<if test="boosterpumproompacking != null" >
boosterPumpRoomPacking = #{boosterpumproompacking,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomshow != null" >
boosterPumpRoomShow = #{boosterpumproomshow,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomfan != null" >
boosterPumpRoomFan = #{boosterpumproomfan,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomdrainage != null" >
boosterPumpRoomDrainage = #{boosterpumproomdrainage,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomsanitation != null" >
boosterPumpRoomSanitation = #{boosterpumproomsanitation,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomresponsibleperson != null" >
boosterPumpRoomResponsiblePerson = #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="boosterpumproomnote != null" >
boosterPumpRoomNote = #{boosterpumproomnote,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsstairs != null" >
clearWaterReserviorsStairs = #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsvent != null" >
clearWaterReserviorsVent = #{clearwaterreserviorsvent,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorspoolroof != null" >
clearWaterReserviorsPoolRoof = #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorssanitation != null" >
clearWaterReserviorsSanitation = #{clearwaterreserviorssanitation,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorspumpbody != null" >
clearWaterReserviorsPumpBody = #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsresponsibleperson != null" >
clearWaterReserviorsResponsiblePerson = #{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="clearwaterreserviorsnote != null" >
clearWaterReserviorsNote = #{clearwaterreserviorsnote,jdbcType=VARCHAR},
</if>
<if test="betweenchlorineequipment != null" >
betweenChlorineEquipment = #{betweenchlorineequipment,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinepipe != null" >
betweenChlorinePipe = #{betweenchlorinepipe,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinedosingpump != null" >
betweenChlorineDosingPump = #{betweenchlorinedosingpump,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinetraffic != null" >
betweenChlorineTraffic = #{betweenchlorinetraffic,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinefan != null" >
betweenChlorineFan = #{betweenchlorinefan,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinesanitation != null" >
betweenChlorineSanitation = #{betweenchlorinesanitation,jdbcType=VARCHAR},
</if>
<if test="betweenchlorineresponsibleperson != null" >
betweenChlorineResponsiblePerson = #{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="betweenchlorinenote != null" >
betweenChlorineNote = #{betweenchlorinenote,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentwelllids != null" >
groundEnvironmentWellLIDS = #{groundenvironmentwelllids,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentdrainagen != null" >
groundEnvironmentDrainagen = #{groundenvironmentdrainagen,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentwatersupply != null" >
groundEnvironmentWaterSupply = #{groundenvironmentwatersupply,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentcable != null" >
groundEnvironmentCable = #{groundenvironmentcable,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentroad != null" >
groundEnvironmentRoad = #{groundenvironmentroad,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentresponsibleperson != null" >
groundEnvironmentResponsiblePerson = #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="groundenvironmentnote != null" >
groundEnvironmentNote = #{groundenvironmentnote,jdbcType=VARCHAR},
</if>
<if test="groundsecurityillegal != null" >
groundSecurityIllegal = #{groundsecurityillegal,jdbcType=VARCHAR},
</if>
<if test="groundsecurityfire != null" >
groundSecurityFire = #{groundsecurityfire,jdbcType=VARCHAR},
</if>
<if test="groundsecurityrats != null" >
groundSecurityRats = #{groundsecurityrats,jdbcType=VARCHAR},
</if>
<if test="groundsecuritysuspiciouspersonnel != null" >
groundSecuritySuspiciousPersonnel = #{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
</if>
<if test="groundsecurityresponsibleperson != null" >
groundSecurityResponsiblePerson = #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="groundsecuritynote != null" >
groundSecurityNote = #{groundsecuritynote,jdbcType=VARCHAR},
</if>
<if test="securitytoolemergency != null" >
securityToolEmergency = #{securitytoolemergency,jdbcType=VARCHAR},
</if>
<if test="securitytoolfloodcontroland != null" >
securityToolFloodControlAnd = #{securitytoolfloodcontroland,jdbcType=VARCHAR},
</if>
<if test="securitytoolprotective != null" >
securityToolProtective = #{securitytoolprotective,jdbcType=VARCHAR},
</if>
<if test="securitytoolmainteance != null" >
securityToolMainteance = #{securitytoolmainteance,jdbcType=VARCHAR},
</if>
<if test="securitytoolresponsibleperson != null" >
securityToolResponsiblePerson = #{securitytoolresponsibleperson,jdbcType=VARCHAR},
</if>
<if test="securitytoolnote != null" >
securityToolNote = #{securitytoolnote,jdbcType=VARCHAR},
</if>
<if test="userid != null" >
userId = #{userid,jdbcType=INTEGER},
</if>
<if test="creattime != null" >
creatTime = #{creattime,jdbcType=TIMESTAMP},
</if>
<if test="reamke1 != null" >
reamke1 = #{reamke1,jdbcType=VARCHAR},
</if>
<if test="reamke2 != null" >
reamke2 = #{reamke2,jdbcType=VARCHAR},
</if>
<if test="reamke3 != null" >
reamke3 = #{reamke3,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.tianbo.warehouse.model.WaterStationsPatrol" >
update water_stations_patrol
set checkProjectControlRommWaterSupplySystem = #{checkprojectcontrolrommwatersupplysystem,jdbcType=VARCHAR},
checkProjectControlRommSecuritySystem = #{checkprojectcontrolrommsecuritysystem,jdbcType=VARCHAR},
checkProjectControlRommRunningRecord = #{checkprojectcontrolrommrunningrecord,jdbcType=VARCHAR},
checkProjectControlRommDocumentHolder = #{checkprojectcontrolrommdocumentholder,jdbcType=VARCHAR},
checkProjectControlRommGround = #{checkprojectcontrolrommground,jdbcType=VARCHAR},
checkProjectControlRommResponsiblePerson = #{checkprojectcontrolrommresponsibleperson,jdbcType=VARCHAR},
checkProjectControlRommnote = #{checkprojectcontrolrommnote,jdbcType=VARCHAR},
checkProjectFrequencyConversionShow = #{checkprojectfrequencyconversionshow,jdbcType=VARCHAR},
checkProjectFrequencyConversionClose = #{checkprojectfrequencyconversionclose,jdbcType=VARCHAR},
checkProjectFrequencyConversionSanitation = #{checkprojectfrequencyconversionsanitation,jdbcType=VARCHAR},
checkProjectFrequencyConversionResponsiblePerson = #{checkprojectfrequencyconversionresponsibleperson,jdbcType=VARCHAR},
checkProjectFrequencyConversionNote = #{checkprojectfrequencyconversionnote,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentPowerSupply = #{checkprojectmeterbetweenturbidityinstrumentpowersupply,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentShow = #{checkprojectmeterbetweenturbidityinstrumentshow,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentAppearance = #{checkprojectmeterbetweenturbidityinstrumentappearance,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentRange = #{checkprojectmeterbetweenturbidityinstrumentrange,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentDetection = #{checkprojectmeterbetweenturbidityinstrumentdetection,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentResponsiblePerson = #{checkprojectmeterbetweenturbidityinstrumentresponsibleperson,jdbcType=VARCHAR},
checkProjectMeterBetweenTurbidityInstrumentNote = #{checkprojectmeterbetweenturbidityinstrumentnote,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterPowerSupply = #{checkprojectmeterbetweenflowmeterpowersupply,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterShow = #{checkprojectmeterbetweenflowmetershow,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterAppearance = #{checkprojectmeterbetweenflowmeterappearance,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterResponsiblePerson = #{checkprojectmeterbetweenflowmeterresponsibleperson,jdbcType=VARCHAR},
checkProjectMeterBetweenFlowMeterNote = #{checkprojectmeterbetweenflowmeternote,jdbcType=VARCHAR},
residualChlorineInstrumentPipeline = #{residualchlorineinstrumentpipeline,jdbcType=VARCHAR},
residualChlorineInstrumentPowerSupply = #{residualchlorineinstrumentpowersupply,jdbcType=VARCHAR},
residualChlorineInstrumentShow = #{residualchlorineinstrumentshow,jdbcType=VARCHAR},
residualChlorineInstrumentAppearance = #{residualchlorineinstrumentappearance,jdbcType=VARCHAR},
residualChlorineInstrumentPipelinMakeWater = #{residualchlorineinstrumentpipelinmakewater,jdbcType=VARCHAR},
residualChlorineInstrumentEquipment = #{residualchlorineinstrumentequipment,jdbcType=VARCHAR},
residualChlorineInstrumentGroundSanitation = #{residualchlorineinstrumentgroundsanitation,jdbcType=VARCHAR},
residualChlorineInstrumentResponsiblePerson = #{residualchlorineinstrumentresponsibleperson,jdbcType=VARCHAR},
residualChlorineInstrumentNote = #{residualchlorineinstrumentnote,jdbcType=VARCHAR},
boosterPumpRoomWaterPump = #{boosterpumproomwaterpump,jdbcType=VARCHAR},
boosterPumpRoomBearing = #{boosterpumproombearing,jdbcType=VARCHAR},
boosterPumpRoomTheValue = #{boosterpumproomthevalue,jdbcType=VARCHAR},
boosterPumpRoomPumpBody = #{boosterpumproompumpbody,jdbcType=VARCHAR},
boosterPumpRoomNamePlate = #{boosterpumproomnameplate,jdbcType=VARCHAR},
boosterPumpRoomPacking = #{boosterpumproompacking,jdbcType=VARCHAR},
boosterPumpRoomShow = #{boosterpumproomshow,jdbcType=VARCHAR},
boosterPumpRoomFan = #{boosterpumproomfan,jdbcType=VARCHAR},
boosterPumpRoomDrainage = #{boosterpumproomdrainage,jdbcType=VARCHAR},
boosterPumpRoomSanitation = #{boosterpumproomsanitation,jdbcType=VARCHAR},
boosterPumpRoomResponsiblePerson = #{boosterpumproomresponsibleperson,jdbcType=VARCHAR},
boosterPumpRoomNote = #{boosterpumproomnote,jdbcType=VARCHAR},
clearWaterReserviorsStairs = #{clearwaterreserviorsstairs,jdbcType=VARCHAR},
clearWaterReserviorsVent = #{clearwaterreserviorsvent,jdbcType=VARCHAR},
clearWaterReserviorsPoolRoof = #{clearwaterreserviorspoolroof,jdbcType=VARCHAR},
clearWaterReserviorsSanitation = #{clearwaterreserviorssanitation,jdbcType=VARCHAR},
clearWaterReserviorsPumpBody = #{clearwaterreserviorspumpbody,jdbcType=VARCHAR},
clearWaterReserviorsResponsiblePerson = #{clearwaterreserviorsresponsibleperson,jdbcType=VARCHAR},
clearWaterReserviorsNote = #{clearwaterreserviorsnote,jdbcType=VARCHAR},
betweenChlorineEquipment = #{betweenchlorineequipment,jdbcType=VARCHAR},
betweenChlorinePipe = #{betweenchlorinepipe,jdbcType=VARCHAR},
betweenChlorineDosingPump = #{betweenchlorinedosingpump,jdbcType=VARCHAR},
betweenChlorineTraffic = #{betweenchlorinetraffic,jdbcType=VARCHAR},
betweenChlorineFan = #{betweenchlorinefan,jdbcType=VARCHAR},
betweenChlorineSanitation = #{betweenchlorinesanitation,jdbcType=VARCHAR},
betweenChlorineResponsiblePerson = #{betweenchlorineresponsibleperson,jdbcType=VARCHAR},
betweenChlorineNote = #{betweenchlorinenote,jdbcType=VARCHAR},
groundEnvironmentWellLIDS = #{groundenvironmentwelllids,jdbcType=VARCHAR},
groundEnvironmentDrainagen = #{groundenvironmentdrainagen,jdbcType=VARCHAR},
groundEnvironmentWaterSupply = #{groundenvironmentwatersupply,jdbcType=VARCHAR},
groundEnvironmentCable = #{groundenvironmentcable,jdbcType=VARCHAR},
groundEnvironmentRoad = #{groundenvironmentroad,jdbcType=VARCHAR},
groundEnvironmentResponsiblePerson = #{groundenvironmentresponsibleperson,jdbcType=VARCHAR},
groundEnvironmentNote = #{groundenvironmentnote,jdbcType=VARCHAR},
groundSecurityIllegal = #{groundsecurityillegal,jdbcType=VARCHAR},
groundSecurityFire = #{groundsecurityfire,jdbcType=VARCHAR},
groundSecurityRats = #{groundsecurityrats,jdbcType=VARCHAR},
groundSecuritySuspiciousPersonnel = #{groundsecuritysuspiciouspersonnel,jdbcType=VARCHAR},
groundSecurityResponsiblePerson = #{groundsecurityresponsibleperson,jdbcType=VARCHAR},
groundSecurityNote = #{groundsecuritynote,jdbcType=VARCHAR},
securityToolEmergency = #{securitytoolemergency,jdbcType=VARCHAR},
securityToolFloodControlAnd = #{securitytoolfloodcontroland,jdbcType=VARCHAR},
securityToolProtective = #{securitytoolprotective,jdbcType=VARCHAR},
securityToolMainteance = #{securitytoolmainteance,jdbcType=VARCHAR},
securityToolResponsiblePerson = #{securitytoolresponsibleperson,jdbcType=VARCHAR},
securityToolNote = #{securitytoolnote,jdbcType=VARCHAR},
userId = #{userid,jdbcType=INTEGER},
creatTime = #{creattime,jdbcType=TIMESTAMP},
reamke1 = #{reamke1,jdbcType=VARCHAR},
reamke2 = #{reamke2,jdbcType=VARCHAR},
reamke3 = #{reamke3,jdbcType=VARCHAR}
where id = #{id,jdbcType=VARCHAR}
</update>
</mapper>