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
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 SC_WORKFLOW_CI_ADD 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("order_code", "String");
        KEYS.put("apply_time", "Long");
        KEYS.put("apply_user_id", "String");
        KEYS.put("apply_user_name", "String");
        KEYS.put("apply_reason", "String");
        KEYS.put("note", "String");
        KEYS.put("flow_id", "String");
        KEYS.put("flow_name", "String");
        KEYS.put("dispatcher_require_date", "Long");
        KEYS.put("urgent_degree", "Integer");
        KEYS.put("approve_time", "Long");
        KEYS.put("approve_user_id", "String");
        KEYS.put("approve_user_name", "String");
        KEYS.put("approve_note", "String");
        KEYS.put("customer_id", "String");
        KEYS.put("customer_name", "String");
        KEYS.put("customer_contact_info", "String");
        KEYS.put("customer_contacts", "String");
        KEYS.put("collection_type_id", "String");
        KEYS.put("collection_type_name", "String");
        KEYS.put("deal_time", "Long");
        KEYS.put("partner_id", "String");
        KEYS.put("fzr_id", "String");
        KEYS.put("fzr_name", "String");
        KEYS.put("order_state", "Integer");
        KEYS.put("close_person_id", "String");
        KEYS.put("close_person_name", "String");
        KEYS.put("close_time", "Long");
        KEYS.put("close_note", "String");
        KEYS.put("project_id", "String");
        KEYS.put("project_name", "String");
        KEYS.put("sub_customer_id", "String");
        KEYS.put("sub_customer_name", "String");
        KEYS.put("contact_id", "String");
    }
    public Map getColumnMap(){
        return KEYS;
    }
 
    private String id;
    private Boolean isSetted_id = false;;
    
    private String order_code;
    private Boolean isSetted_order_code = false;
    private Long apply_time;
    private Boolean isSetted_apply_time = false;
    private String apply_user_id;
    private Boolean isSetted_apply_user_id = false;
    private String apply_user_name;
    private Boolean isSetted_apply_user_name = false;
    private String apply_reason;
    private Boolean isSetted_apply_reason = false;
    private String note;
    private Boolean isSetted_note = false;
    private String flow_id;
    private Boolean isSetted_flow_id = false;
    private String flow_name;
    private Boolean isSetted_flow_name = false;
    private Long dispatcher_require_date;
    private Boolean isSetted_dispatcher_require_date = false;
    private Integer urgent_degree;
    private Boolean isSetted_urgent_degree = false;
    private Long approve_time;
    private Boolean isSetted_approve_time = false;
    private String approve_user_id;
    private Boolean isSetted_approve_user_id = false;
    private String approve_user_name;
    private Boolean isSetted_approve_user_name = false;
    private String approve_note;
    private Boolean isSetted_approve_note = false;
    private String customer_id;
    private Boolean isSetted_customer_id = false;
    private String customer_name;
    private Boolean isSetted_customer_name = false;
    private String customer_contact_info;
    private Boolean isSetted_customer_contact_info = false;
    private String customer_contacts;
    private Boolean isSetted_customer_contacts = false;
    private String collection_type_id;
    private Boolean isSetted_collection_type_id = false;
    private String collection_type_name;
    private Boolean isSetted_collection_type_name = false;
    private Long deal_time;
    private Boolean isSetted_deal_time = false;
    private String partner_id;
    private Boolean isSetted_partner_id = false;
    private String fzr_id;
    private Boolean isSetted_fzr_id = false;
    private String fzr_name;
    private Boolean isSetted_fzr_name = false;
    private Integer order_state;
    private Boolean isSetted_order_state = false;
    private String close_person_id;
    private Boolean isSetted_close_person_id = false;
    private String close_person_name;
    private Boolean isSetted_close_person_name = false;
    private Long close_time;
    private Boolean isSetted_close_time = false;
    private String close_note;
    private Boolean isSetted_close_note = false;
    private String project_id;
    private Boolean isSetted_project_id = false;
    private String project_name;
    private Boolean isSetted_project_name = false;
    private String sub_customer_id;
    private Boolean isSetted_sub_customer_id = false;
    private String sub_customer_name;
    private Boolean isSetted_sub_customer_name = false;
    private String contact_id;
    private Boolean isSetted_contact_id = false;
 
    private void initBeanValues(){
        BEAN_VALUES = new HashMap<String, Object>();
        BEAN_VALUES.put("id",id);
            BEAN_VALUES.put("order_code", null);
            BEAN_VALUES.put("apply_time", null);
            BEAN_VALUES.put("apply_user_id", null);
            BEAN_VALUES.put("apply_user_name", null);
            BEAN_VALUES.put("apply_reason", null);
            BEAN_VALUES.put("note", null);
            BEAN_VALUES.put("flow_id", null);
            BEAN_VALUES.put("flow_name", null);
            BEAN_VALUES.put("dispatcher_require_date", null);
            BEAN_VALUES.put("urgent_degree", null);
            BEAN_VALUES.put("approve_time", null);
            BEAN_VALUES.put("approve_user_id", null);
            BEAN_VALUES.put("approve_user_name", null);
            BEAN_VALUES.put("approve_note", null);
            BEAN_VALUES.put("customer_id", null);
            BEAN_VALUES.put("customer_name", null);
            BEAN_VALUES.put("customer_contact_info", null);
            BEAN_VALUES.put("customer_contacts", null);
            BEAN_VALUES.put("collection_type_id", null);
            BEAN_VALUES.put("collection_type_name", null);
            BEAN_VALUES.put("deal_time", null);
            BEAN_VALUES.put("partner_id", null);
            BEAN_VALUES.put("fzr_id", null);
            BEAN_VALUES.put("fzr_name", null);
            BEAN_VALUES.put("order_state", null);
            BEAN_VALUES.put("close_person_id", null);
            BEAN_VALUES.put("close_person_name", null);
            BEAN_VALUES.put("close_time", null);
            BEAN_VALUES.put("close_note", null);
            BEAN_VALUES.put("project_id", null);
            BEAN_VALUES.put("project_name", null);
            BEAN_VALUES.put("sub_customer_id", null);
            BEAN_VALUES.put("sub_customer_name", null);
            BEAN_VALUES.put("contact_id", null);
    }
    
    public SC_WORKFLOW_CI_ADD() {
        initBeanValues();
    }
    
    public SC_WORKFLOW_CI_ADD(String id) {
        super();
        this.id = id;
        initBeanValues();
        BEAN_VALUES.put("id",id);
    }
 
    /**
     * 获取ID
     */
    public String getId() {
        return this.id;
    }
    /**
     * 设置ID
     */
    public SC_WORKFLOW_CI_ADD 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 SC_WORKFLOW_CI_ADD set ");
            if (isSetted_order_code) {
                sBuffer.append("order_code=:order_code,");
            }
            if (isSetted_apply_time) {
                sBuffer.append("apply_time=:apply_time,");
            }
            if (isSetted_apply_user_id) {
                sBuffer.append("apply_user_id=:apply_user_id,");
            }
            if (isSetted_apply_user_name) {
                sBuffer.append("apply_user_name=:apply_user_name,");
            }
            if (isSetted_apply_reason) {
                sBuffer.append("apply_reason=:apply_reason,");
            }
            if (isSetted_note) {
                sBuffer.append("note=:note,");
            }
            if (isSetted_flow_id) {
                sBuffer.append("flow_id=:flow_id,");
            }
            if (isSetted_flow_name) {
                sBuffer.append("flow_name=:flow_name,");
            }
            if (isSetted_dispatcher_require_date) {
                sBuffer.append("dispatcher_require_date=:dispatcher_require_date,");
            }
            if (isSetted_urgent_degree) {
                sBuffer.append("urgent_degree=:urgent_degree,");
            }
            if (isSetted_approve_time) {
                sBuffer.append("approve_time=:approve_time,");
            }
            if (isSetted_approve_user_id) {
                sBuffer.append("approve_user_id=:approve_user_id,");
            }
            if (isSetted_approve_user_name) {
                sBuffer.append("approve_user_name=:approve_user_name,");
            }
            if (isSetted_approve_note) {
                sBuffer.append("approve_note=:approve_note,");
            }
            if (isSetted_customer_id) {
                sBuffer.append("customer_id=:customer_id,");
            }
            if (isSetted_customer_name) {
                sBuffer.append("customer_name=:customer_name,");
            }
            if (isSetted_customer_contact_info) {
                sBuffer.append("customer_contact_info=:customer_contact_info,");
            }
            if (isSetted_customer_contacts) {
                sBuffer.append("customer_contacts=:customer_contacts,");
            }
            if (isSetted_collection_type_id) {
                sBuffer.append("collection_type_id=:collection_type_id,");
            }
            if (isSetted_collection_type_name) {
                sBuffer.append("collection_type_name=:collection_type_name,");
            }
            if (isSetted_deal_time) {
                sBuffer.append("deal_time=:deal_time,");
            }
            if (isSetted_partner_id) {
                sBuffer.append("partner_id=:partner_id,");
            }
            if (isSetted_fzr_id) {
                sBuffer.append("fzr_id=:fzr_id,");
            }
            if (isSetted_fzr_name) {
                sBuffer.append("fzr_name=:fzr_name,");
            }
            if (isSetted_order_state) {
                sBuffer.append("order_state=:order_state,");
            }
            if (isSetted_close_person_id) {
                sBuffer.append("close_person_id=:close_person_id,");
            }
            if (isSetted_close_person_name) {
                sBuffer.append("close_person_name=:close_person_name,");
            }
            if (isSetted_close_time) {
                sBuffer.append("close_time=:close_time,");
            }
            if (isSetted_close_note) {
                sBuffer.append("close_note=:close_note,");
            }
            if (isSetted_project_id) {
                sBuffer.append("project_id=:project_id,");
            }
            if (isSetted_project_name) {
                sBuffer.append("project_name=:project_name,");
            }
            if (isSetted_sub_customer_id) {
                sBuffer.append("sub_customer_id=:sub_customer_id,");
            }
            if (isSetted_sub_customer_name) {
                sBuffer.append("sub_customer_name=:sub_customer_name,");
            }
            if (isSetted_contact_id) {
                sBuffer.append("contact_id=:contact_id,");
            }
        String sql = sBuffer.toString();
        return StringUtils.removeEnd(sql, ",") + " where id=:id";
    }
    
    
    @Override
    public String getInsertSql() {
        StringBuffer sBuffer = new StringBuffer("insert into SC_WORKFLOW_CI_ADD(");
        StringBuffer fileds = new StringBuffer("id,");
        StringBuffer values = new StringBuffer(":id,");        
            fileds.append("order_code,");
            values.append(":order_code,");
            fileds.append("apply_time,");
            values.append(":apply_time,");
            fileds.append("apply_user_id,");
            values.append(":apply_user_id,");
            fileds.append("apply_user_name,");
            values.append(":apply_user_name,");
            fileds.append("apply_reason,");
            values.append(":apply_reason,");
            fileds.append("note,");
            values.append(":note,");
            fileds.append("flow_id,");
            values.append(":flow_id,");
            fileds.append("flow_name,");
            values.append(":flow_name,");
            fileds.append("dispatcher_require_date,");
            values.append(":dispatcher_require_date,");
            fileds.append("urgent_degree,");
            values.append(":urgent_degree,");
            fileds.append("approve_time,");
            values.append(":approve_time,");
            fileds.append("approve_user_id,");
            values.append(":approve_user_id,");
            fileds.append("approve_user_name,");
            values.append(":approve_user_name,");
            fileds.append("approve_note,");
            values.append(":approve_note,");
            fileds.append("customer_id,");
            values.append(":customer_id,");
            fileds.append("customer_name,");
            values.append(":customer_name,");
            fileds.append("customer_contact_info,");
            values.append(":customer_contact_info,");
            fileds.append("customer_contacts,");
            values.append(":customer_contacts,");
            fileds.append("collection_type_id,");
            values.append(":collection_type_id,");
            fileds.append("collection_type_name,");
            values.append(":collection_type_name,");
            fileds.append("deal_time,");
            values.append(":deal_time,");
            fileds.append("partner_id,");
            values.append(":partner_id,");
            fileds.append("fzr_id,");
            values.append(":fzr_id,");
            fileds.append("fzr_name,");
            values.append(":fzr_name,");
            fileds.append("order_state,");
            values.append(":order_state,");
            fileds.append("close_person_id,");
            values.append(":close_person_id,");
            fileds.append("close_person_name,");
            values.append(":close_person_name,");
            fileds.append("close_time,");
            values.append(":close_time,");
            fileds.append("close_note,");
            values.append(":close_note,");
            fileds.append("project_id,");
            values.append(":project_id,");
            fileds.append("project_name,");
            values.append(":project_name,");
            fileds.append("sub_customer_id,");
            values.append(":sub_customer_id,");
            fileds.append("sub_customer_name,");
            values.append(":sub_customer_name,");
            fileds.append("contact_id,");
            values.append(":contact_id,");
        sBuffer.append(StringUtils.removeEnd(fileds.toString(), ",") + ") values("+StringUtils.removeEnd(values.toString(), ",")+")");
        return sBuffer.toString();
    }
    
 
        /**
         * 获取工单编码<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getOrder_code() {
            return order_code;
        }
        /**
         * 设置工单编码<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setOrder_code(String order_code) {
            this.order_code = order_code;
            this.isSetted_order_code = true;
            BEAN_VALUES.put("order_code",order_code);
            return this;
        }
        /**
         * 获取申请时间<BR/>
         * 䣺2017-28-23 hh:02
         */
        public Long getApply_time() {
            return apply_time;
        }
        /**
         * 设置申请时间<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setApply_time(Long apply_time) {
            this.apply_time = apply_time;
            this.isSetted_apply_time = true;
            BEAN_VALUES.put("apply_time",apply_time);
            return this;
        }
        /**
         * 获取申请人编号<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getApply_user_id() {
            return apply_user_id;
        }
        /**
         * 设置申请人编号<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setApply_user_id(String apply_user_id) {
            this.apply_user_id = apply_user_id;
            this.isSetted_apply_user_id = true;
            BEAN_VALUES.put("apply_user_id",apply_user_id);
            return this;
        }
        /**
         * 获取申请人姓名<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getApply_user_name() {
            return apply_user_name;
        }
        /**
         * 设置申请人姓名<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setApply_user_name(String apply_user_name) {
            this.apply_user_name = apply_user_name;
            this.isSetted_apply_user_name = true;
            BEAN_VALUES.put("apply_user_name",apply_user_name);
            return this;
        }
        /**
         * 获取申请原因<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getApply_reason() {
            return apply_reason;
        }
        /**
         * 设置申请原因<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setApply_reason(String apply_reason) {
            this.apply_reason = apply_reason;
            this.isSetted_apply_reason = true;
            BEAN_VALUES.put("apply_reason",apply_reason);
            return this;
        }
        /**
         * 获取设备情况说明<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getNote() {
            return note;
        }
        /**
         * 设置设备情况说明<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setNote(String note) {
            this.note = note;
            this.isSetted_note = true;
            BEAN_VALUES.put("note",note);
            return this;
        }
        /**
         * 获取流程编号<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getFlow_id() {
            return flow_id;
        }
        /**
         * 设置流程编号<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setFlow_id(String flow_id) {
            this.flow_id = flow_id;
            this.isSetted_flow_id = true;
            BEAN_VALUES.put("flow_id",flow_id);
            return this;
        }
        /**
         * 获取流程名称<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getFlow_name() {
            return flow_name;
        }
        /**
         * 设置流程名称<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setFlow_name(String flow_name) {
            this.flow_name = flow_name;
            this.isSetted_flow_name = true;
            BEAN_VALUES.put("flow_name",flow_name);
            return this;
        }
        /**
         * 获取调度要求处理时间<BR/>
         * 䣺2017-28-23 hh:02
         */
        public Long getDispatcher_require_date() {
            return dispatcher_require_date;
        }
        /**
         * 设置调度要求处理时间<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setDispatcher_require_date(Long dispatcher_require_date) {
            this.dispatcher_require_date = dispatcher_require_date;
            this.isSetted_dispatcher_require_date = true;
            BEAN_VALUES.put("dispatcher_require_date",dispatcher_require_date);
            return this;
        }
        /**
         * 获取紧急程度<BR/>
         * 䣺2017-28-23 hh:02
         */
        public Integer getUrgent_degree() {
            return urgent_degree;
        }
        /**
         * 设置紧急程度<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setUrgent_degree(Integer urgent_degree) {
            this.urgent_degree = urgent_degree;
            this.isSetted_urgent_degree = true;
            BEAN_VALUES.put("urgent_degree",urgent_degree);
            return this;
        }
        /**
         * 获取审批时间<BR/>
         * 䣺2017-28-23 hh:02
         */
        public Long getApprove_time() {
            return approve_time;
        }
        /**
         * 设置审批时间<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setApprove_time(Long approve_time) {
            this.approve_time = approve_time;
            this.isSetted_approve_time = true;
            BEAN_VALUES.put("approve_time",approve_time);
            return this;
        }
        /**
         * 获取审批人编号<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getApprove_user_id() {
            return approve_user_id;
        }
        /**
         * 设置审批人编号<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setApprove_user_id(String approve_user_id) {
            this.approve_user_id = approve_user_id;
            this.isSetted_approve_user_id = true;
            BEAN_VALUES.put("approve_user_id",approve_user_id);
            return this;
        }
        /**
         * 获取审批人姓名<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getApprove_user_name() {
            return approve_user_name;
        }
        /**
         * 设置审批人姓名<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setApprove_user_name(String approve_user_name) {
            this.approve_user_name = approve_user_name;
            this.isSetted_approve_user_name = true;
            BEAN_VALUES.put("approve_user_name",approve_user_name);
            return this;
        }
        /**
         * 获取审批意见<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getApprove_note() {
            return approve_note;
        }
        /**
         * 设置审批意见<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setApprove_note(String approve_note) {
            this.approve_note = approve_note;
            this.isSetted_approve_note = true;
            BEAN_VALUES.put("approve_note",approve_note);
            return this;
        }
        /**
         * 获取客户编号<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getCustomer_id() {
            return customer_id;
        }
        /**
         * 设置客户编号<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setCustomer_id(String customer_id) {
            this.customer_id = customer_id;
            this.isSetted_customer_id = true;
            BEAN_VALUES.put("customer_id",customer_id);
            return this;
        }
        /**
         * 获取客户名称<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getCustomer_name() {
            return customer_name;
        }
        /**
         * 设置客户名称<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setCustomer_name(String customer_name) {
            this.customer_name = customer_name;
            this.isSetted_customer_name = true;
            BEAN_VALUES.put("customer_name",customer_name);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getCustomer_contact_info() {
            return customer_contact_info;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setCustomer_contact_info(String customer_contact_info) {
            this.customer_contact_info = customer_contact_info;
            this.isSetted_customer_contact_info = true;
            BEAN_VALUES.put("customer_contact_info",customer_contact_info);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getCustomer_contacts() {
            return customer_contacts;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setCustomer_contacts(String customer_contacts) {
            this.customer_contacts = customer_contacts;
            this.isSetted_customer_contacts = true;
            BEAN_VALUES.put("customer_contacts",customer_contacts);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getCollection_type_id() {
            return collection_type_id;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setCollection_type_id(String collection_type_id) {
            this.collection_type_id = collection_type_id;
            this.isSetted_collection_type_id = true;
            BEAN_VALUES.put("collection_type_id",collection_type_id);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getCollection_type_name() {
            return collection_type_name;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setCollection_type_name(String collection_type_name) {
            this.collection_type_name = collection_type_name;
            this.isSetted_collection_type_name = true;
            BEAN_VALUES.put("collection_type_name",collection_type_name);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public Long getDeal_time() {
            return deal_time;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setDeal_time(Long deal_time) {
            this.deal_time = deal_time;
            this.isSetted_deal_time = true;
            BEAN_VALUES.put("deal_time",deal_time);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getPartner_id() {
            return partner_id;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setPartner_id(String partner_id) {
            this.partner_id = partner_id;
            this.isSetted_partner_id = true;
            BEAN_VALUES.put("partner_id",partner_id);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getFzr_id() {
            return fzr_id;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setFzr_id(String fzr_id) {
            this.fzr_id = fzr_id;
            this.isSetted_fzr_id = true;
            BEAN_VALUES.put("fzr_id",fzr_id);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getFzr_name() {
            return fzr_name;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setFzr_name(String fzr_name) {
            this.fzr_name = fzr_name;
            this.isSetted_fzr_name = true;
            BEAN_VALUES.put("fzr_name",fzr_name);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public Integer getOrder_state() {
            return order_state;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setOrder_state(Integer order_state) {
            this.order_state = order_state;
            this.isSetted_order_state = true;
            BEAN_VALUES.put("order_state",order_state);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getClose_person_id() {
            return close_person_id;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setClose_person_id(String close_person_id) {
            this.close_person_id = close_person_id;
            this.isSetted_close_person_id = true;
            BEAN_VALUES.put("close_person_id",close_person_id);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getClose_person_name() {
            return close_person_name;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setClose_person_name(String close_person_name) {
            this.close_person_name = close_person_name;
            this.isSetted_close_person_name = true;
            BEAN_VALUES.put("close_person_name",close_person_name);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public Long getClose_time() {
            return close_time;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setClose_time(Long close_time) {
            this.close_time = close_time;
            this.isSetted_close_time = true;
            BEAN_VALUES.put("close_time",close_time);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getClose_note() {
            return close_note;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setClose_note(String close_note) {
            this.close_note = close_note;
            this.isSetted_close_note = true;
            BEAN_VALUES.put("close_note",close_note);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getProject_id() {
            return project_id;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setProject_id(String project_id) {
            this.project_id = project_id;
            this.isSetted_project_id = true;
            BEAN_VALUES.put("project_id",project_id);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getProject_name() {
            return project_name;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setProject_name(String project_name) {
            this.project_name = project_name;
            this.isSetted_project_name = true;
            BEAN_VALUES.put("project_name",project_name);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getSub_customer_id() {
            return sub_customer_id;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setSub_customer_id(String sub_customer_id) {
            this.sub_customer_id = sub_customer_id;
            this.isSetted_sub_customer_id = true;
            BEAN_VALUES.put("sub_customer_id",sub_customer_id);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getSub_customer_name() {
            return sub_customer_name;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setSub_customer_name(String sub_customer_name) {
            this.sub_customer_name = sub_customer_name;
            this.isSetted_sub_customer_name = true;
            BEAN_VALUES.put("sub_customer_name",sub_customer_name);
            return this;
        }
        /**
         * 获取<BR/>
         * 䣺2017-28-23 hh:02
         */
        public String getContact_id() {
            return contact_id;
        }
        /**
         * 设置<BR/>
         * 2017-28-23 hh:02
         */
        public SC_WORKFLOW_CI_ADD setContact_id(String contact_id) {
            this.contact_id = contact_id;
            this.isSetted_contact_id = true;
            BEAN_VALUES.put("contact_id",contact_id);
            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 SC_WORKFLOW_CI_ADD getInstanceById() {
            if (StringUtils.isBlank(id)) {
                throw new RuntimeException("获取Bean时ID不能为空");
            }
            return dao.queryForBean("select * from " + getTableName() + " where id=:id", BEAN_VALUES, this);
        }
    
        
        
        @Override
        public SC_WORKFLOW_CI_ADD queryForBean() {
            StringBuffer sBuffer = new StringBuffer("select * from SC_WORKFLOW_CI_ADD where ");
            if(isSetted_id){
                sBuffer.append("id=:id and ");
            }
                if (isSetted_order_code) {
                    sBuffer.append("order_code=:order_code and ");
                }
                if (isSetted_apply_time) {
                    sBuffer.append("apply_time=:apply_time and ");
                }
                if (isSetted_apply_user_id) {
                    sBuffer.append("apply_user_id=:apply_user_id and ");
                }
                if (isSetted_apply_user_name) {
                    sBuffer.append("apply_user_name=:apply_user_name and ");
                }
                if (isSetted_apply_reason) {
                    sBuffer.append("apply_reason=:apply_reason and ");
                }
                if (isSetted_note) {
                    sBuffer.append("note=:note and ");
                }
                if (isSetted_flow_id) {
                    sBuffer.append("flow_id=:flow_id and ");
                }
                if (isSetted_flow_name) {
                    sBuffer.append("flow_name=:flow_name and ");
                }
                if (isSetted_dispatcher_require_date) {
                    sBuffer.append("dispatcher_require_date=:dispatcher_require_date and ");
                }
                if (isSetted_urgent_degree) {
                    sBuffer.append("urgent_degree=:urgent_degree and ");
                }
                if (isSetted_approve_time) {
                    sBuffer.append("approve_time=:approve_time and ");
                }
                if (isSetted_approve_user_id) {
                    sBuffer.append("approve_user_id=:approve_user_id and ");
                }
                if (isSetted_approve_user_name) {
                    sBuffer.append("approve_user_name=:approve_user_name and ");
                }
                if (isSetted_approve_note) {
                    sBuffer.append("approve_note=:approve_note and ");
                }
                if (isSetted_customer_id) {
                    sBuffer.append("customer_id=:customer_id and ");
                }
                if (isSetted_customer_name) {
                    sBuffer.append("customer_name=:customer_name and ");
                }
                if (isSetted_customer_contact_info) {
                    sBuffer.append("customer_contact_info=:customer_contact_info and ");
                }
                if (isSetted_customer_contacts) {
                    sBuffer.append("customer_contacts=:customer_contacts and ");
                }
                if (isSetted_collection_type_id) {
                    sBuffer.append("collection_type_id=:collection_type_id and ");
                }
                if (isSetted_collection_type_name) {
                    sBuffer.append("collection_type_name=:collection_type_name and ");
                }
                if (isSetted_deal_time) {
                    sBuffer.append("deal_time=:deal_time and ");
                }
                if (isSetted_partner_id) {
                    sBuffer.append("partner_id=:partner_id and ");
                }
                if (isSetted_fzr_id) {
                    sBuffer.append("fzr_id=:fzr_id and ");
                }
                if (isSetted_fzr_name) {
                    sBuffer.append("fzr_name=:fzr_name and ");
                }
                if (isSetted_order_state) {
                    sBuffer.append("order_state=:order_state and ");
                }
                if (isSetted_close_person_id) {
                    sBuffer.append("close_person_id=:close_person_id and ");
                }
                if (isSetted_close_person_name) {
                    sBuffer.append("close_person_name=:close_person_name and ");
                }
                if (isSetted_close_time) {
                    sBuffer.append("close_time=:close_time and ");
                }
                if (isSetted_close_note) {
                    sBuffer.append("close_note=:close_note and ");
                }
                if (isSetted_project_id) {
                    sBuffer.append("project_id=:project_id and ");
                }
                if (isSetted_project_name) {
                    sBuffer.append("project_name=:project_name and ");
                }
                if (isSetted_sub_customer_id) {
                    sBuffer.append("sub_customer_id=:sub_customer_id and ");
                }
                if (isSetted_sub_customer_name) {
                    sBuffer.append("sub_customer_name=:sub_customer_name and ");
                }
                if (isSetted_contact_id) {
                    sBuffer.append("contact_id=:contact_id and ");
                }
            String sql = sBuffer.toString();
            sql = StringUtils.removeEnd(sql, " and ");
            return dao.queryForBean(sql,this);
        }
    
        @Override
        public String getTableName() {
            return "SC_WORKFLOW_CI_ADD";
        }
        
        
        public Map getBeanValues(){
            return this.BEAN_VALUES;
        }
    
        @Override
        public SC_WORKFLOW_CI_ADD insert() {
            if (StringUtils.isBlank(id)) {
                this.setId(StringUtil.getUUID());
            }
            dao.execute(getInsertSql(),BEAN_VALUES);
            return this;
        }
    
        @Override
        public SC_WORKFLOW_CI_ADD update() {
            if (StringUtils.isBlank(id)) {
                throw new RuntimeException("更新Bean时ID不能为空");
            }
            dao.execute(getUpdateSql(),BEAN_VALUES);
            return this;
        }  
        
        public SC_WORKFLOW_CI_ADD 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 SC_WORKFLOW_CI_ADD 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("ORDER_CODE");
            BEAN_VALUES.put("order_code",obj);
                this.setOrder_code(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("APPLY_TIME");
            BEAN_VALUES.put("apply_time",obj);
                this.setApply_time(ConvertUtil.obj2Long(obj));
            obj = rs.getObject("APPLY_USER_ID");
            BEAN_VALUES.put("apply_user_id",obj);
                this.setApply_user_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("APPLY_USER_NAME");
            BEAN_VALUES.put("apply_user_name",obj);
                this.setApply_user_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("APPLY_REASON");
            BEAN_VALUES.put("apply_reason",obj);
                this.setApply_reason(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("NOTE");
            BEAN_VALUES.put("note",obj);
                this.setNote(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("FLOW_ID");
            BEAN_VALUES.put("flow_id",obj);
                this.setFlow_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("FLOW_NAME");
            BEAN_VALUES.put("flow_name",obj);
                this.setFlow_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("DISPATCHER_REQUIRE_DATE");
            BEAN_VALUES.put("dispatcher_require_date",obj);
                this.setDispatcher_require_date(ConvertUtil.obj2Long(obj));
            obj = rs.getObject("URGENT_DEGREE");
            BEAN_VALUES.put("urgent_degree",obj);
                this.setUrgent_degree(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("APPROVE_TIME");
            BEAN_VALUES.put("approve_time",obj);
                this.setApprove_time(ConvertUtil.obj2Long(obj));
            obj = rs.getObject("APPROVE_USER_ID");
            BEAN_VALUES.put("approve_user_id",obj);
                this.setApprove_user_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("APPROVE_USER_NAME");
            BEAN_VALUES.put("approve_user_name",obj);
                this.setApprove_user_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("APPROVE_NOTE");
            BEAN_VALUES.put("approve_note",obj);
                this.setApprove_note(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("CUSTOMER_ID");
            BEAN_VALUES.put("customer_id",obj);
                this.setCustomer_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("CUSTOMER_NAME");
            BEAN_VALUES.put("customer_name",obj);
                this.setCustomer_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("CUSTOMER_CONTACT_INFO");
            BEAN_VALUES.put("customer_contact_info",obj);
                this.setCustomer_contact_info(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("CUSTOMER_CONTACTS");
            BEAN_VALUES.put("customer_contacts",obj);
                this.setCustomer_contacts(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("COLLECTION_TYPE_ID");
            BEAN_VALUES.put("collection_type_id",obj);
                this.setCollection_type_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("COLLECTION_TYPE_NAME");
            BEAN_VALUES.put("collection_type_name",obj);
                this.setCollection_type_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("DEAL_TIME");
            BEAN_VALUES.put("deal_time",obj);
                this.setDeal_time(ConvertUtil.obj2Long(obj));
            obj = rs.getObject("PARTNER_ID");
            BEAN_VALUES.put("partner_id",obj);
                this.setPartner_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("FZR_ID");
            BEAN_VALUES.put("fzr_id",obj);
                this.setFzr_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("FZR_NAME");
            BEAN_VALUES.put("fzr_name",obj);
                this.setFzr_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("ORDER_STATE");
            BEAN_VALUES.put("order_state",obj);
                this.setOrder_state(ConvertUtil.obj2Integer(obj));
            obj = rs.getObject("CLOSE_PERSON_ID");
            BEAN_VALUES.put("close_person_id",obj);
                this.setClose_person_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("CLOSE_PERSON_NAME");
            BEAN_VALUES.put("close_person_name",obj);
                this.setClose_person_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("CLOSE_TIME");
            BEAN_VALUES.put("close_time",obj);
                this.setClose_time(ConvertUtil.obj2Long(obj));
            obj = rs.getObject("CLOSE_NOTE");
            BEAN_VALUES.put("close_note",obj);
                this.setClose_note(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("PROJECT_ID");
            BEAN_VALUES.put("project_id",obj);
                this.setProject_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("PROJECT_NAME");
            BEAN_VALUES.put("project_name",obj);
                this.setProject_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("SUB_CUSTOMER_ID");
            BEAN_VALUES.put("sub_customer_id",obj);
                this.setSub_customer_id(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("SUB_CUSTOMER_NAME");
            BEAN_VALUES.put("sub_customer_name",obj);
                this.setSub_customer_name(ConvertUtil.obj2Str(obj));
            obj = rs.getObject("CONTACT_ID");
            BEAN_VALUES.put("contact_id",obj);
                this.setContact_id(ConvertUtil.obj2Str(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 SC_WORKFLOW_CI_ADD newInstance(){
            return new SC_WORKFLOW_CI_ADD();
        }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
}