cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
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
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
package cn.ksource.beans;
 
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
 
import org.apache.commons.lang.StringUtils;
 
 
import cn.ksource.core.dao.BaseBean;
import cn.ksource.core.util.ConvertUtil;
import cn.ksource.core.util.StringUtil;
 
/**
 * 用户信息
 */
public class GG_USER extends BaseBean{
 
    public final static Map<String, String> KEYS = new HashMap<String, String>();
    private Map BEAN_VALUES = null;
    
    static {
        KEYS.put("id", "String");
        KEYS.put("loginname", "String");
        KEYS.put("password", "String");
        KEYS.put("zhlx", "Integer");
        KEYS.put("zsxm", "String");
        KEYS.put("age", "Integer");
        KEYS.put("xingb", "String");
        KEYS.put("beiz", "String");
        KEYS.put("bgdh", "String");
        KEYS.put("sjhm", "String");
        KEYS.put("zt", "Integer");
        KEYS.put("zhaop", "String");
        KEYS.put("ssbmbh", "String");
        KEYS.put("yjbmbh", "String");
        KEYS.put("ejbmbh", "String");
        KEYS.put("sjbmbh", "String");
        KEYS.put("sijbmbh", "String");
        KEYS.put("sscj", "Integer");
        KEYS.put("bmpx", "Integer");
        KEYS.put("qq", "String");
        KEYS.put("email", "String");
        KEYS.put("gwmc", "String");
        KEYS.put("logintype", "Integer");
        KEYS.put("accounttype", "Integer");
        KEYS.put("deskid", "String");
        KEYS.put("is_init", "Integer");
        KEYS.put("iswechat", "Integer");
        KEYS.put("open_id", "String");
        KEYS.put("qq_open_id", "String");
        KEYS.put("isemail", "Integer");
        KEYS.put("isphone", "Integer");
        KEYS.put("photopath", "String");
        KEYS.put("note", "String");
        KEYS.put("remind_type", "String");
        KEYS.put("ime", "String");
        KEYS.put("km_score", "Integer");
        KEYS.put("wechat_nickname", "String");
        KEYS.put("wechat_login_open_id", "String");
        KEYS.put("gh", "String");
        KEYS.put("is_tp", "Integer");
    }
    public Map getColumnMap(){
        return KEYS;
    }
 
    private String id;
    private Boolean isSetted_id = false;;
    
    private String loginname;
    private Boolean isSetted_loginname = false;
    private String password;
    private Boolean isSetted_password = false;
    private Integer zhlx;
    private Boolean isSetted_zhlx = false;
    private String zsxm;
    private Boolean isSetted_zsxm = false;
    private Integer age;
    private Boolean isSetted_age = false;
    private String xingb;
    private Boolean isSetted_xingb = false;
    private String beiz;
    private Boolean isSetted_beiz = false;
    private String bgdh;
    private Boolean isSetted_bgdh = false;
    private String sjhm;
    private Boolean isSetted_sjhm = false;
    private Integer zt;
    private Boolean isSetted_zt = false;
    private String zhaop;
    private Boolean isSetted_zhaop = false;
    private String ssbmbh;
    private Boolean isSetted_ssbmbh = false;
    private String yjbmbh;
    private Boolean isSetted_yjbmbh = false;
    private String ejbmbh;
    private Boolean isSetted_ejbmbh = false;
    private String sjbmbh;
    private Boolean isSetted_sjbmbh = false;
    private String sijbmbh;
    private Boolean isSetted_sijbmbh = false;
    private Integer sscj;
    private Boolean isSetted_sscj = false;
    private Integer bmpx;
    private Boolean isSetted_bmpx = false;
    private String qq;
    private Boolean isSetted_qq = false;
    private String email;
    private Boolean isSetted_email = false;
    private String gwmc;
    private Boolean isSetted_gwmc = false;
    private Integer logintype;
    private Boolean isSetted_logintype = false;
    private Integer accounttype;
    private Boolean isSetted_accounttype = false;
    private String deskid;
    private Boolean isSetted_deskid = false;
    private Integer is_init;
    private Boolean isSetted_is_init = false;
    private Integer iswechat;
    private Boolean isSetted_iswechat = false;
    private String open_id;
    private Boolean isSetted_open_id = false;
    private String qq_open_id;
    private Boolean isSetted_qq_open_id = false;
    private Integer isemail;
    private Boolean isSetted_isemail = false;
    private Integer isphone;
    private Boolean isSetted_isphone = false;
    private String photopath;
    private Boolean isSetted_photopath = false;
    private String note;
    private Boolean isSetted_note = false;
    private String remind_type;
    private Boolean isSetted_remind_type = false;
    private String ime;
    private Boolean isSetted_ime = false;
    private Integer km_score;
    private Boolean isSetted_km_score = false;
    private String wechat_nickname;
    private Boolean isSetted_wechat_nickname = false;
    private String wechat_login_open_id;
    private Boolean isSetted_wechat_login_open_id = false;
    private String gh;
    private Boolean isSetted_gh = false;
    private Integer is_tp;
    private Boolean isSetted_is_tp = false;
 
    private void initBeanValues(){
        BEAN_VALUES = new HashMap<String, Object>();
        BEAN_VALUES.put("id",id);
            BEAN_VALUES.put("loginname", null);
            BEAN_VALUES.put("password", null);
            BEAN_VALUES.put("zhlx", null);
            BEAN_VALUES.put("zsxm", null);
            BEAN_VALUES.put("age", null);
            BEAN_VALUES.put("xingb", null);
            BEAN_VALUES.put("beiz", null);
            BEAN_VALUES.put("bgdh", null);
            BEAN_VALUES.put("sjhm", null);
            BEAN_VALUES.put("zt", null);
            BEAN_VALUES.put("zhaop", null);
            BEAN_VALUES.put("ssbmbh", null);
            BEAN_VALUES.put("yjbmbh", null);
            BEAN_VALUES.put("ejbmbh", null);
            BEAN_VALUES.put("sjbmbh", null);
            BEAN_VALUES.put("sijbmbh", null);
            BEAN_VALUES.put("sscj", null);
            BEAN_VALUES.put("bmpx", null);
            BEAN_VALUES.put("qq", null);
            BEAN_VALUES.put("email", null);
            BEAN_VALUES.put("gwmc", null);
            BEAN_VALUES.put("logintype", null);
            BEAN_VALUES.put("accounttype", null);
            BEAN_VALUES.put("deskid", null);
            BEAN_VALUES.put("is_init", null);
            BEAN_VALUES.put("iswechat", null);
            BEAN_VALUES.put("open_id", null);
            BEAN_VALUES.put("qq_open_id", null);
            BEAN_VALUES.put("isemail", null);
            BEAN_VALUES.put("isphone", null);
            BEAN_VALUES.put("photopath", null);
            BEAN_VALUES.put("note", null);
            BEAN_VALUES.put("remind_type", null);
            BEAN_VALUES.put("ime", null);
            BEAN_VALUES.put("km_score", null);
            BEAN_VALUES.put("wechat_nickname", null);
            BEAN_VALUES.put("wechat_login_open_id", null);
            BEAN_VALUES.put("gh", null);
            BEAN_VALUES.put("is_tp", null);
    }
    
    public GG_USER() {
        initBeanValues();
    }
    
    public GG_USER(String id) {
        super();
        this.id = id;
        initBeanValues();
        BEAN_VALUES.put("id",id);
    }
 
    /**
     * 获取ID
     */
    public String getId() {
        return this.id;
    }
    /**
     * 设置ID
     */
    public GG_USER setId(String id) {
        this.id = id;
        this.isSetted_id = true;
        BEAN_VALUES.put("id",id);
        return this;
    }
    
    @Override
    public String getUpdateSql() {
        StringBuffer sBuffer = new StringBuffer("update GG_USER set ");
            if (isSetted_loginname) {
                sBuffer.append("loginname=:loginname,");
            }
            if (isSetted_password) {
                sBuffer.append("password=:password,");
            }
            if (isSetted_zhlx) {
                sBuffer.append("zhlx=:zhlx,");
            }
            if (isSetted_zsxm) {
                sBuffer.append("zsxm=:zsxm,");
            }
            if (isSetted_age) {
                sBuffer.append("age=:age,");
            }
            if (isSetted_xingb) {
                sBuffer.append("xingb=:xingb,");
            }
            if (isSetted_beiz) {
                sBuffer.append("beiz=:beiz,");
            }
            if (isSetted_bgdh) {
                sBuffer.append("bgdh=:bgdh,");
            }
            if (isSetted_sjhm) {
                sBuffer.append("sjhm=:sjhm,");
            }
            if (isSetted_zt) {
                sBuffer.append("zt=:zt,");
            }
            if (isSetted_zhaop) {
                sBuffer.append("zhaop=:zhaop,");
            }
            if (isSetted_ssbmbh) {
                sBuffer.append("ssbmbh=:ssbmbh,");
            }
            if (isSetted_yjbmbh) {
                sBuffer.append("yjbmbh=:yjbmbh,");
            }
            if (isSetted_ejbmbh) {
                sBuffer.append("ejbmbh=:ejbmbh,");
            }
            if (isSetted_sjbmbh) {
                sBuffer.append("sjbmbh=:sjbmbh,");
            }
            if (isSetted_sijbmbh) {
                sBuffer.append("sijbmbh=:sijbmbh,");
            }
            if (isSetted_sscj) {
                sBuffer.append("sscj=:sscj,");
            }
            if (isSetted_bmpx) {
                sBuffer.append("bmpx=:bmpx,");
            }
            if (isSetted_qq) {
                sBuffer.append("qq=:qq,");
            }
            if (isSetted_email) {
                sBuffer.append("email=:email,");
            }
            if (isSetted_gwmc) {
                sBuffer.append("gwmc=:gwmc,");
            }
            if (isSetted_logintype) {
                sBuffer.append("logintype=:logintype,");
            }
            if (isSetted_accounttype) {
                sBuffer.append("accounttype=:accounttype,");
            }
            if (isSetted_deskid) {
                sBuffer.append("deskid=:deskid,");
            }
            if (isSetted_is_init) {
                sBuffer.append("is_init=:is_init,");
            }
            if (isSetted_iswechat) {
                sBuffer.append("iswechat=:iswechat,");
            }
            if (isSetted_open_id) {
                sBuffer.append("open_id=:open_id,");
            }
            if (isSetted_qq_open_id) {
                sBuffer.append("qq_open_id=:qq_open_id,");
            }
            if (isSetted_isemail) {
                sBuffer.append("isemail=:isemail,");
            }
            if (isSetted_isphone) {
                sBuffer.append("isphone=:isphone,");
            }
            if (isSetted_photopath) {
                sBuffer.append("photopath=:photopath,");
            }
            if (isSetted_note) {
                sBuffer.append("note=:note,");
            }
            if (isSetted_remind_type) {
                sBuffer.append("remind_type=:remind_type,");
            }
            if (isSetted_ime) {
                sBuffer.append("ime=:ime,");
            }
            if (isSetted_km_score) {
                sBuffer.append("km_score=:km_score,");
            }
            if (isSetted_wechat_nickname) {
                sBuffer.append("wechat_nickname=:wechat_nickname,");
            }
            if (isSetted_wechat_login_open_id) {
                sBuffer.append("wechat_login_open_id=:wechat_login_open_id,");
            }
            if (isSetted_gh) {
                sBuffer.append("gh=:gh,");
            }
            if (isSetted_is_tp) {
                sBuffer.append("is_tp=:is_tp,");
            }
        String sql = sBuffer.toString();
        return StringUtils.removeEnd(sql, ",") + " where id=:id";
    }
    
    
    @Override
    public String getInsertSql() {
        StringBuffer sBuffer = new StringBuffer("insert into GG_USER(");
        StringBuffer fileds = new StringBuffer("id,");
        StringBuffer values = new StringBuffer(":id,");        
            fileds.append("loginname,");
            values.append(":loginname,");
            fileds.append("password,");
            values.append(":password,");
            fileds.append("zhlx,");
            values.append(":zhlx,");
            fileds.append("zsxm,");
            values.append(":zsxm,");
            fileds.append("age,");
            values.append(":age,");
            fileds.append("xingb,");
            values.append(":xingb,");
            fileds.append("beiz,");
            values.append(":beiz,");
            fileds.append("bgdh,");
            values.append(":bgdh,");
            fileds.append("sjhm,");
            values.append(":sjhm,");
            fileds.append("zt,");
            values.append(":zt,");
            fileds.append("zhaop,");
            values.append(":zhaop,");
            fileds.append("ssbmbh,");
            values.append(":ssbmbh,");
            fileds.append("yjbmbh,");
            values.append(":yjbmbh,");
            fileds.append("ejbmbh,");
            values.append(":ejbmbh,");
            fileds.append("sjbmbh,");
            values.append(":sjbmbh,");
            fileds.append("sijbmbh,");
            values.append(":sijbmbh,");
            fileds.append("sscj,");
            values.append(":sscj,");
            fileds.append("bmpx,");
            values.append(":bmpx,");
            fileds.append("qq,");
            values.append(":qq,");
            fileds.append("email,");
            values.append(":email,");
            fileds.append("gwmc,");
            values.append(":gwmc,");
            fileds.append("logintype,");
            values.append(":logintype,");
            fileds.append("accounttype,");
            values.append(":accounttype,");
            fileds.append("deskid,");
            values.append(":deskid,");
            fileds.append("is_init,");
            values.append(":is_init,");
            fileds.append("iswechat,");
            values.append(":iswechat,");
            fileds.append("open_id,");
            values.append(":open_id,");
            fileds.append("qq_open_id,");
            values.append(":qq_open_id,");
            fileds.append("isemail,");
            values.append(":isemail,");
            fileds.append("isphone,");
            values.append(":isphone,");
            fileds.append("photopath,");
            values.append(":photopath,");
            fileds.append("note,");
            values.append(":note,");
            fileds.append("remind_type,");
            values.append(":remind_type,");
            fileds.append("ime,");
            values.append(":ime,");
            fileds.append("km_score,");
            values.append(":km_score,");
            fileds.append("wechat_nickname,");
            values.append(":wechat_nickname,");
            fileds.append("wechat_login_open_id,");
            values.append(":wechat_login_open_id,");
            fileds.append("gh,");
            values.append(":gh,");
            fileds.append("is_tp,");
            values.append(":is_tp,");
        sBuffer.append(StringUtils.removeEnd(fileds.toString(), ",") + ") values("+StringUtils.removeEnd(values.toString(), ",")+")");
        return sBuffer.toString();
    }
    
 
        /**
         * 获取登录名<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getLoginname() {
            return loginname;
        }
        /**
         * 设置登录名<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setLoginname(String loginname) {
            this.loginname = loginname;
            this.isSetted_loginname = true;
            BEAN_VALUES.put("loginname",loginname);
            return this;
        }
        /**
         * 获取密码<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getPassword() {
            return password;
        }
        /**
         * 设置密码<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setPassword(String password) {
            this.password = password;
            this.isSetted_password = true;
            BEAN_VALUES.put("password",password);
            return this;
        }
        /**
         * 获取帐号类型(1=系统维护;2=系统运营)<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getZhlx() {
            return zhlx;
        }
        /**
         * 设置帐号类型(1=系统维护;2=系统运营)<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setZhlx(Integer zhlx) {
            this.zhlx = zhlx;
            this.isSetted_zhlx = true;
            BEAN_VALUES.put("zhlx",zhlx);
            return this;
        }
        /**
         * 获取真实姓名<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getZsxm() {
            return zsxm;
        }
        /**
         * 设置真实姓名<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setZsxm(String zsxm) {
            this.zsxm = zsxm;
            this.isSetted_zsxm = true;
            BEAN_VALUES.put("zsxm",zsxm);
            return this;
        }
        /**
         * 获取年龄<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getAge() {
            return age;
        }
        /**
         * 设置年龄<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setAge(Integer age) {
            this.age = age;
            this.isSetted_age = true;
            BEAN_VALUES.put("age",age);
            return this;
        }
        /**
         * 获取性别<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getXingb() {
            return xingb;
        }
        /**
         * 设置性别<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setXingb(String xingb) {
            this.xingb = xingb;
            this.isSetted_xingb = true;
            BEAN_VALUES.put("xingb",xingb);
            return this;
        }
        /**
         * 获取备注<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getBeiz() {
            return beiz;
        }
        /**
         * 设置备注<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setBeiz(String beiz) {
            this.beiz = beiz;
            this.isSetted_beiz = true;
            BEAN_VALUES.put("beiz",beiz);
            return this;
        }
        /**
         * 获取办公电话<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getBgdh() {
            return bgdh;
        }
        /**
         * 设置办公电话<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setBgdh(String bgdh) {
            this.bgdh = bgdh;
            this.isSetted_bgdh = true;
            BEAN_VALUES.put("bgdh",bgdh);
            return this;
        }
        /**
         * 获取手机号码<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getSjhm() {
            return sjhm;
        }
        /**
         * 设置手机号码<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setSjhm(String sjhm) {
            this.sjhm = sjhm;
            this.isSetted_sjhm = true;
            BEAN_VALUES.put("sjhm",sjhm);
            return this;
        }
        /**
         * 获取状态(1=正常;2=禁用)<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getZt() {
            return zt;
        }
        /**
         * 设置状态(1=正常;2=禁用)<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setZt(Integer zt) {
            this.zt = zt;
            this.isSetted_zt = true;
            BEAN_VALUES.put("zt",zt);
            return this;
        }
        /**
         * 获取照片路径<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getZhaop() {
            return zhaop;
        }
        /**
         * 设置照片路径<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setZhaop(String zhaop) {
            this.zhaop = zhaop;
            this.isSetted_zhaop = true;
            BEAN_VALUES.put("zhaop",zhaop);
            return this;
        }
        /**
         * 获取主职所属部门编号<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getSsbmbh() {
            return ssbmbh;
        }
        /**
         * 设置主职所属部门编号<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setSsbmbh(String ssbmbh) {
            this.ssbmbh = ssbmbh;
            this.isSetted_ssbmbh = true;
            BEAN_VALUES.put("ssbmbh",ssbmbh);
            return this;
        }
        /**
         * 获取主职一级部门编号(上级部门编号)<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getYjbmbh() {
            return yjbmbh;
        }
        /**
         * 设置主职一级部门编号(上级部门编号)<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setYjbmbh(String yjbmbh) {
            this.yjbmbh = yjbmbh;
            this.isSetted_yjbmbh = true;
            BEAN_VALUES.put("yjbmbh",yjbmbh);
            return this;
        }
        /**
         * 获取二级部门编号<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getEjbmbh() {
            return ejbmbh;
        }
        /**
         * 设置二级部门编号<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setEjbmbh(String ejbmbh) {
            this.ejbmbh = ejbmbh;
            this.isSetted_ejbmbh = true;
            BEAN_VALUES.put("ejbmbh",ejbmbh);
            return this;
        }
        /**
         * 获取三级部门编号<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getSjbmbh() {
            return sjbmbh;
        }
        /**
         * 设置三级部门编号<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setSjbmbh(String sjbmbh) {
            this.sjbmbh = sjbmbh;
            this.isSetted_sjbmbh = true;
            BEAN_VALUES.put("sjbmbh",sjbmbh);
            return this;
        }
        /**
         * 获取四级部门编号<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getSijbmbh() {
            return sijbmbh;
        }
        /**
         * 设置四级部门编号<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setSijbmbh(String sijbmbh) {
            this.sijbmbh = sijbmbh;
            this.isSetted_sijbmbh = true;
            BEAN_VALUES.put("sijbmbh",sijbmbh);
            return this;
        }
        /**
         * 获取所属层级<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getSscj() {
            return sscj;
        }
        /**
         * 设置所属层级<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setSscj(Integer sscj) {
            this.sscj = sscj;
            this.isSetted_sscj = true;
            BEAN_VALUES.put("sscj",sscj);
            return this;
        }
        /**
         * 获取部门排序<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getBmpx() {
            return bmpx;
        }
        /**
         * 设置部门排序<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setBmpx(Integer bmpx) {
            this.bmpx = bmpx;
            this.isSetted_bmpx = true;
            BEAN_VALUES.put("bmpx",bmpx);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getQq() {
            return qq;
        }
        /**
         * 设置<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setQq(String qq) {
            this.qq = qq;
            this.isSetted_qq = true;
            BEAN_VALUES.put("qq",qq);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getEmail() {
            return email;
        }
        /**
         * 设置<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setEmail(String email) {
            this.email = email;
            this.isSetted_email = true;
            BEAN_VALUES.put("email",email);
            return this;
        }
        /**
         * 获取岗位名称<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getGwmc() {
            return gwmc;
        }
        /**
         * 设置岗位名称<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setGwmc(String gwmc) {
            this.gwmc = gwmc;
            this.isSetted_gwmc = true;
            BEAN_VALUES.put("gwmc",gwmc);
            return this;
        }
        /**
         * 获取登录策略(1=密码登录;2=USBKey登录)<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getLogintype() {
            return logintype;
        }
        /**
         * 设置登录策略(1=密码登录;2=USBKey登录)<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setLogintype(Integer logintype) {
            this.logintype = logintype;
            this.isSetted_logintype = true;
            BEAN_VALUES.put("logintype",logintype);
            return this;
        }
        /**
         * 获取账户类型(1=系统管理员;2:警务人员 3:文职)<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getAccounttype() {
            return accounttype;
        }
        /**
         * 设置账户类型(1=系统管理员;2:警务人员 3:文职)<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setAccounttype(Integer accounttype) {
            this.accounttype = accounttype;
            this.isSetted_accounttype = true;
            BEAN_VALUES.put("accounttype",accounttype);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getDeskid() {
            return deskid;
        }
        /**
         * 设置<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setDeskid(String deskid) {
            this.deskid = deskid;
            this.isSetted_deskid = true;
            BEAN_VALUES.put("deskid",deskid);
            return this;
        }
        /**
         * 获取是否已初始化数据(1=是;2=否)<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getIs_init() {
            return is_init;
        }
        /**
         * 设置是否已初始化数据(1=是;2=否)<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setIs_init(Integer is_init) {
            this.is_init = is_init;
            this.isSetted_is_init = true;
            BEAN_VALUES.put("is_init",is_init);
            return this;
        }
        /**
         * 获取是否绑定微信账号 1:未绑定 2:已绑定<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getIswechat() {
            return iswechat;
        }
        /**
         * 设置是否绑定微信账号 1:未绑定 2:已绑定<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setIswechat(Integer iswechat) {
            this.iswechat = iswechat;
            this.isSetted_iswechat = true;
            BEAN_VALUES.put("iswechat",iswechat);
            return this;
        }
        /**
         * 获取微信用户对应该公众号的唯一id<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getOpen_id() {
            return open_id;
        }
        /**
         * 设置微信用户对应该公众号的唯一id<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setOpen_id(String open_id) {
            this.open_id = open_id;
            this.isSetted_open_id = true;
            BEAN_VALUES.put("open_id",open_id);
            return this;
        }
        /**
         * 获取qq账号绑定ID<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getQq_open_id() {
            return qq_open_id;
        }
        /**
         * 设置qq账号绑定ID<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setQq_open_id(String qq_open_id) {
            this.qq_open_id = qq_open_id;
            this.isSetted_qq_open_id = true;
            BEAN_VALUES.put("qq_open_id",qq_open_id);
            return this;
        }
        /**
         * 获取邮箱绑定:1:未绑定;2:已绑定<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getIsemail() {
            return isemail;
        }
        /**
         * 设置邮箱绑定:1:未绑定;2:已绑定<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setIsemail(Integer isemail) {
            this.isemail = isemail;
            this.isSetted_isemail = true;
            BEAN_VALUES.put("isemail",isemail);
            return this;
        }
        /**
         * 获取电话号码绑定:1:未绑定;2:已绑定<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getIsphone() {
            return isphone;
        }
        /**
         * 设置电话号码绑定:1:未绑定;2:已绑定<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setIsphone(Integer isphone) {
            this.isphone = isphone;
            this.isSetted_isphone = true;
            BEAN_VALUES.put("isphone",isphone);
            return this;
        }
        /**
         * 获取头像路径<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getPhotopath() {
            return photopath;
        }
        /**
         * 设置头像路径<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setPhotopath(String photopath) {
            this.photopath = photopath;
            this.isSetted_photopath = true;
            BEAN_VALUES.put("photopath",photopath);
            return this;
        }
        /**
         * 获取备注1<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getNote() {
            return note;
        }
        /**
         * 设置备注1<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setNote(String note) {
            this.note = note;
            this.isSetted_note = true;
            BEAN_VALUES.put("note",note);
            return this;
        }
        /**
         * 获取提醒方式(没有提醒=null;有提醒共保存三位数字,第一位表示短信(1=提醒;0=不提醒),第二位表示邮箱(1=提醒;0=不提醒),第三位表示微信(1=提醒;0=不提醒))<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getRemind_type() {
            return remind_type;
        }
        /**
         * 设置提醒方式(没有提醒=null;有提醒共保存三位数字,第一位表示短信(1=提醒;0=不提醒),第二位表示邮箱(1=提醒;0=不提醒),第三位表示微信(1=提醒;0=不提醒))<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setRemind_type(String remind_type) {
            this.remind_type = remind_type;
            this.isSetted_remind_type = true;
            BEAN_VALUES.put("remind_type",remind_type);
            return this;
        }
        /**
         * 获取手机IME码<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getIme() {
            return ime;
        }
        /**
         * 设置手机IME码<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setIme(String ime) {
            this.ime = ime;
            this.isSetted_ime = true;
            BEAN_VALUES.put("ime",ime);
            return this;
        }
        /**
         * 获取知识库积分数量<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getKm_score() {
            return km_score;
        }
        /**
         * 设置知识库积分数量<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setKm_score(Integer km_score) {
            this.km_score = km_score;
            this.isSetted_km_score = true;
            BEAN_VALUES.put("km_score",km_score);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getWechat_nickname() {
            return wechat_nickname;
        }
        /**
         * 设置<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setWechat_nickname(String wechat_nickname) {
            this.wechat_nickname = wechat_nickname;
            this.isSetted_wechat_nickname = true;
            BEAN_VALUES.put("wechat_nickname",wechat_nickname);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getWechat_login_open_id() {
            return wechat_login_open_id;
        }
        /**
         * 设置<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setWechat_login_open_id(String wechat_login_open_id) {
            this.wechat_login_open_id = wechat_login_open_id;
            this.isSetted_wechat_login_open_id = true;
            BEAN_VALUES.put("wechat_login_open_id",wechat_login_open_id);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2018-22-18 hh:04
         */
        public String getGh() {
            return gh;
        }
        /**
         * 设置<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setGh(String gh) {
            this.gh = gh;
            this.isSetted_gh = true;
            BEAN_VALUES.put("gh",gh);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2018-22-18 hh:04
         */
        public Integer getIs_tp() {
            return is_tp;
        }
        /**
         * 设置<BR/>
         * 2018-22-18 hh:04
         */
        public GG_USER setIs_tp(Integer is_tp) {
            this.is_tp = is_tp;
            this.isSetted_is_tp = true;
            BEAN_VALUES.put("is_tp",is_tp);
            return this;
        }
 
        /**
         * 使用ID删除Bean<BR/>
         */
        public void deleteById() {
            if (StringUtils.isBlank(id)) {
                throw new RuntimeException("删除bean时ID不能为空");
            }
            dao.execute("delete from " + getTableName() + " where id = :id", BEAN_VALUES);
        }
    
        @Override
        public GG_USER getInstanceById() {
            if (StringUtils.isBlank(id)) {
                throw new RuntimeException("获取Bean时ID不能为空");
            }
            return dao.queryForBean("select * from " + getTableName() + " where id=:id", BEAN_VALUES, this);
        }
    
        
        
        @Override
        public GG_USER queryForBean() {
            StringBuffer sBuffer = new StringBuffer("select * from GG_USER where ");
            if(isSetted_id){
                sBuffer.append("id=:id and ");
            }
                if (isSetted_loginname) {
                    sBuffer.append("loginname=:loginname and ");
                }
                if (isSetted_password) {
                    sBuffer.append("password=:password and ");
                }
                if (isSetted_zhlx) {
                    sBuffer.append("zhlx=:zhlx and ");
                }
                if (isSetted_zsxm) {
                    sBuffer.append("zsxm=:zsxm and ");
                }
                if (isSetted_age) {
                    sBuffer.append("age=:age and ");
                }
                if (isSetted_xingb) {
                    sBuffer.append("xingb=:xingb and ");
                }
                if (isSetted_beiz) {
                    sBuffer.append("beiz=:beiz and ");
                }
                if (isSetted_bgdh) {
                    sBuffer.append("bgdh=:bgdh and ");
                }
                if (isSetted_sjhm) {
                    sBuffer.append("sjhm=:sjhm and ");
                }
                if (isSetted_zt) {
                    sBuffer.append("zt=:zt and ");
                }
                if (isSetted_zhaop) {
                    sBuffer.append("zhaop=:zhaop and ");
                }
                if (isSetted_ssbmbh) {
                    sBuffer.append("ssbmbh=:ssbmbh and ");
                }
                if (isSetted_yjbmbh) {
                    sBuffer.append("yjbmbh=:yjbmbh and ");
                }
                if (isSetted_ejbmbh) {
                    sBuffer.append("ejbmbh=:ejbmbh and ");
                }
                if (isSetted_sjbmbh) {
                    sBuffer.append("sjbmbh=:sjbmbh and ");
                }
                if (isSetted_sijbmbh) {
                    sBuffer.append("sijbmbh=:sijbmbh and ");
                }
                if (isSetted_sscj) {
                    sBuffer.append("sscj=:sscj and ");
                }
                if (isSetted_bmpx) {
                    sBuffer.append("bmpx=:bmpx and ");
                }
                if (isSetted_qq) {
                    sBuffer.append("qq=:qq and ");
                }
                if (isSetted_email) {
                    sBuffer.append("email=:email and ");
                }
                if (isSetted_gwmc) {
                    sBuffer.append("gwmc=:gwmc and ");
                }
                if (isSetted_logintype) {
                    sBuffer.append("logintype=:logintype and ");
                }
                if (isSetted_accounttype) {
                    sBuffer.append("accounttype=:accounttype and ");
                }
                if (isSetted_deskid) {
                    sBuffer.append("deskid=:deskid and ");
                }
                if (isSetted_is_init) {
                    sBuffer.append("is_init=:is_init and ");
                }
                if (isSetted_iswechat) {
                    sBuffer.append("iswechat=:iswechat and ");
                }
                if (isSetted_open_id) {
                    sBuffer.append("open_id=:open_id and ");
                }
                if (isSetted_qq_open_id) {
                    sBuffer.append("qq_open_id=:qq_open_id and ");
                }
                if (isSetted_isemail) {
                    sBuffer.append("isemail=:isemail and ");
                }
                if (isSetted_isphone) {
                    sBuffer.append("isphone=:isphone and ");
                }
                if (isSetted_photopath) {
                    sBuffer.append("photopath=:photopath and ");
                }
                if (isSetted_note) {
                    sBuffer.append("note=:note and ");
                }
                if (isSetted_remind_type) {
                    sBuffer.append("remind_type=:remind_type and ");
                }
                if (isSetted_ime) {
                    sBuffer.append("ime=:ime and ");
                }
                if (isSetted_km_score) {
                    sBuffer.append("km_score=:km_score and ");
                }
                if (isSetted_wechat_nickname) {
                    sBuffer.append("wechat_nickname=:wechat_nickname and ");
                }
                if (isSetted_wechat_login_open_id) {
                    sBuffer.append("wechat_login_open_id=:wechat_login_open_id and ");
                }
                if (isSetted_gh) {
                    sBuffer.append("gh=:gh and ");
                }
                if (isSetted_is_tp) {
                    sBuffer.append("is_tp=:is_tp and ");
                }
            String sql = sBuffer.toString();
            sql = StringUtils.removeEnd(sql, " and ");
            return dao.queryForBean(sql,this);
        }
    
        @Override
        public String getTableName() {
            return "GG_USER";
        }
        
        
        public Map getBeanValues(){
            return this.BEAN_VALUES;
        }
    
        @Override
        public GG_USER insert() {
            if (StringUtils.isBlank(id)) {
                this.setId(StringUtil.getUUID());
            }
            dao.execute(getInsertSql(),BEAN_VALUES);
            return this;
        }
    
        @Override
        public GG_USER update() {
            if (StringUtils.isBlank(id)) {
                throw new RuntimeException("更新Bean时ID不能为空");
            }
            dao.execute(getUpdateSql(),BEAN_VALUES);
            return this;
        }  
        
        public GG_USER insertOrUpdate(){
            if (StringUtils.isNotBlank(id)) {
                return update();
            } else {
                return insert();
            }
        }
        
        /**
         * 通过ID获取该条信息的Map结构
         */
        public Map getBeanMapById() {
            
            if (StringUtils.isBlank(id)) {
                throw new RuntimeException("ID不能为空!");
            }
            
            return dao.queryForMap("select * from GG_USER where id=:id",BEAN_VALUES);
        }
 
        public Object mapRow(ResultSet rs, int rownum) throws SQLException {
            Object id = rs.getObject("ID");
            this.setId(ConvertUtil.obj2Str(id));
            BEAN_VALUES.put("id",id);
            Object obj = null;
            obj = rs.getObject("LOGINNAME");
            BEAN_VALUES.put("loginname",obj);
                this.setLoginname(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("PASSWORD");
            BEAN_VALUES.put("password",obj);
                this.setPassword(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("ZHLX");
            BEAN_VALUES.put("zhlx",obj);
                this.setZhlx(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("ZSXM");
            BEAN_VALUES.put("zsxm",obj);
                this.setZsxm(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("AGE");
            BEAN_VALUES.put("age",obj);
                this.setAge(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("XINGB");
            BEAN_VALUES.put("xingb",obj);
                this.setXingb(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("BEIZ");
            BEAN_VALUES.put("beiz",obj);
                this.setBeiz(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("BGDH");
            BEAN_VALUES.put("bgdh",obj);
                this.setBgdh(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("SJHM");
            BEAN_VALUES.put("sjhm",obj);
                this.setSjhm(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("ZT");
            BEAN_VALUES.put("zt",obj);
                this.setZt(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("ZHAOP");
            BEAN_VALUES.put("zhaop",obj);
                this.setZhaop(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("SSBMBH");
            BEAN_VALUES.put("ssbmbh",obj);
                this.setSsbmbh(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("YJBMBH");
            BEAN_VALUES.put("yjbmbh",obj);
                this.setYjbmbh(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("EJBMBH");
            BEAN_VALUES.put("ejbmbh",obj);
                this.setEjbmbh(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("SJBMBH");
            BEAN_VALUES.put("sjbmbh",obj);
                this.setSjbmbh(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("SIJBMBH");
            BEAN_VALUES.put("sijbmbh",obj);
                this.setSijbmbh(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("SSCJ");
            BEAN_VALUES.put("sscj",obj);
                this.setSscj(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("BMPX");
            BEAN_VALUES.put("bmpx",obj);
                this.setBmpx(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("QQ");
            BEAN_VALUES.put("qq",obj);
                this.setQq(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("EMAIL");
            BEAN_VALUES.put("email",obj);
                this.setEmail(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("GWMC");
            BEAN_VALUES.put("gwmc",obj);
                this.setGwmc(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("LOGINTYPE");
            BEAN_VALUES.put("logintype",obj);
                this.setLogintype(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("ACCOUNTTYPE");
            BEAN_VALUES.put("accounttype",obj);
                this.setAccounttype(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("DESKID");
            BEAN_VALUES.put("deskid",obj);
                this.setDeskid(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("IS_INIT");
            BEAN_VALUES.put("is_init",obj);
                this.setIs_init(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("ISWECHAT");
            BEAN_VALUES.put("iswechat",obj);
                this.setIswechat(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("OPEN_ID");
            BEAN_VALUES.put("open_id",obj);
                this.setOpen_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("QQ_OPEN_ID");
            BEAN_VALUES.put("qq_open_id",obj);
                this.setQq_open_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("ISEMAIL");
            BEAN_VALUES.put("isemail",obj);
                this.setIsemail(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("ISPHONE");
            BEAN_VALUES.put("isphone",obj);
                this.setIsphone(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("PHOTOPATH");
            BEAN_VALUES.put("photopath",obj);
                this.setPhotopath(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("NOTE");
            BEAN_VALUES.put("note",obj);
                this.setNote(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("REMIND_TYPE");
            BEAN_VALUES.put("remind_type",obj);
                this.setRemind_type(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("IME");
            BEAN_VALUES.put("ime",obj);
                this.setIme(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("KM_SCORE");
            BEAN_VALUES.put("km_score",obj);
                this.setKm_score(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("WECHAT_NICKNAME");
            BEAN_VALUES.put("wechat_nickname",obj);
                this.setWechat_nickname(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("WECHAT_LOGIN_OPEN_ID");
            BEAN_VALUES.put("wechat_login_open_id",obj);
                this.setWechat_login_open_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("GH");
            BEAN_VALUES.put("gh",obj);
                this.setGh(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("IS_TP");
            BEAN_VALUES.put("is_tp",obj);
                this.setIs_tp(ConvertUtil.obj2Integer(obj));
            return this;
        }
        
        
        public String toString() {
            StringBuffer sb = new StringBuffer("[");
            for (Iterator iterator = KEYS.keySet().iterator(); iterator.hasNext();) {
                String key = (String) iterator.next();
                sb.append(key+"=" + BEAN_VALUES.get(key)+",");
            }
            sb.append("]");
            return sb.toString();
        }
        
        public GG_USER newInstance(){
            return new GG_USER();
        }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
}