WangHan
2025-04-02 a8ba678a3fe5a39da2c732014cebbb66e408e97c
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
 
 
package com.iplatform.model.po;
 
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.walker.jdbc.BasePo;
 
/**
 * 表名:S_OPER_LOG *
 * @author genrator
 */
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public class S_oper_log extends BasePo<S_oper_log> {
    // 序列化版本号
    private static final long serialVersionUID = 1L;
 
    /**
     * 用于兼容老写法
     */
    @JsonIgnore
    public static final S_oper_log ROW_MAPPER = new S_oper_log();
 
    // 主键
    private Long oper_id = null;
    @JsonIgnore
    protected boolean isset_oper_id = false;
 
    // 属性列表
    private String title = null;
    @JsonIgnore
    protected boolean isset_title = false;
 
    private Integer business_type = null;
    @JsonIgnore
    protected boolean isset_business_type = false;
 
    private String method = null;
    @JsonIgnore
    protected boolean isset_method = false;
 
    private String request_method = null;
    @JsonIgnore
    protected boolean isset_request_method = false;
 
    private Integer operate_user = null;
    @JsonIgnore
    protected boolean isset_operate_user = false;
 
    private String oper_name = null;
    @JsonIgnore
    protected boolean isset_oper_name = false;
 
    private String dept_name = null;
    @JsonIgnore
    protected boolean isset_dept_name = false;
 
    private String oper_url = null;
    @JsonIgnore
    protected boolean isset_oper_url = false;
 
    private String oper_ip = null;
    @JsonIgnore
    protected boolean isset_oper_ip = false;
 
    private String oper_location = null;
    @JsonIgnore
    protected boolean isset_oper_location = false;
 
    private String oper_param = null;
    @JsonIgnore
    protected boolean isset_oper_param = false;
 
    private String json_result = null;
    @JsonIgnore
    protected boolean isset_json_result = false;
 
    private Integer status = null;
    @JsonIgnore
    protected boolean isset_status = false;
 
    private String error_msg = null;
    @JsonIgnore
    protected boolean isset_error_msg = false;
 
    private Long oper_time = null;
    @JsonIgnore
    protected boolean isset_oper_time = false;
 
    private Long group_dept_id = null;
    @JsonIgnore
    protected boolean isset_group_dept_id = false;
 
    private Long province_dept_id = null;
    @JsonIgnore
    protected boolean isset_province_dept_id = false;
 
    private Long city_dept_id = null;
    @JsonIgnore
    protected boolean isset_city_dept_id = false;
 
    private Long county_dept_id = null;
    @JsonIgnore
    protected boolean isset_county_dept_id = false;
 
    private String group_dept_name = null;
    @JsonIgnore
    protected boolean isset_group_dept_name = false;
 
    private String province_dept_name = null;
    @JsonIgnore
    protected boolean isset_province_dept_name = false;
 
    private String city_dept_name = null;
    @JsonIgnore
    protected boolean isset_city_dept_name = false;
 
    private String county_dept_name = null;
    @JsonIgnore
    protected boolean isset_county_dept_name = false;
 
    private Long base_dept_id = null;
    @JsonIgnore
    protected boolean isset_base_dept_id = false;
 
    private String base_dept_name = null;
    @JsonIgnore
    protected boolean isset_base_dept_name = false;
 
    private Long base_user_id = null;
    @JsonIgnore
    protected boolean isset_base_user_id = false;
 
    private String base_user_name = null;
    @JsonIgnore
    protected boolean isset_base_user_name = false;
 
    private String base_user_code = null;
    @JsonIgnore
    protected boolean isset_base_user_code = false;
 
    private String psn_code = null;
    @JsonIgnore
    protected boolean isset_psn_code = false;
 
    private String phone = null;
    @JsonIgnore
    protected boolean isset_phone = false;
 
    private String phone_desen = null;
    @JsonIgnore
    protected boolean isset_phone_desen = false;
 
    /**
     * 默认构造函数
     */
    public S_oper_log() {
    }
 
    /**
     * 根据主键构造对象
     */
    public S_oper_log(Long oper_id) {
        this.setOper_id(oper_id);
    }
 
    /**
     * 设置主键值
     */
    @Override
    public void setPkValue(Object value) {
        this.setOper_id((Long) value);
    }
 
    public Long getOper_id() {
        return this.oper_id;
    }
 
    public void setOper_id(Long oper_id) {
        this.oper_id = oper_id;
        this.isset_oper_id = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOper_id() {
        return this.oper_id == null;
    }
 
    public String getTitle() {
        return this.title;
    }
 
    public void setTitle(String title) {
        this.title = title;
        this.isset_title = true;
    }
 
    @JsonIgnore
    public boolean isEmptyTitle() {
        return this.title == null || this.title.length() == 0;
    }
 
 
    public Integer getBusiness_type() {
        return this.business_type;
    }
    public void setBusiness_type(Integer business_type) {
        this.business_type = business_type;
        this.isset_business_type = true;
            }
    @JsonIgnore
    public boolean isEmptyBusiness_type() {
        return this.business_type == null;
    }
 
 
    public String getMethod() {
        return this.method;
    }
    public void setMethod(String method) {
        this.method = method;
        this.isset_method = true;
            }
    @JsonIgnore
    public boolean isEmptyMethod() {
        return this.method == null || this.method.length() == 0;
    }
 
 
    public String getRequest_method() {
        return this.request_method;
    }
    public void setRequest_method(String request_method) {
        this.request_method = request_method;
        this.isset_request_method = true;
            }
    @JsonIgnore
    public boolean isEmptyRequest_method() {
        return this.request_method == null || this.request_method.length() == 0;
    }
 
 
    public Integer getOperate_user() {
        return this.operate_user;
    }
    public void setOperate_user(Integer operate_user) {
        this.operate_user = operate_user;
        this.isset_operate_user = true;
            }
    @JsonIgnore
    public boolean isEmptyOperate_user() {
        return this.operate_user == null;
    }
 
 
    public String getOper_name() {
        return this.oper_name;
    }
    public void setOper_name(String oper_name) {
        this.oper_name = oper_name;
        this.isset_oper_name = true;
            }
    @JsonIgnore
    public boolean isEmptyOper_name() {
        return this.oper_name == null || this.oper_name.length() == 0;
    }
 
 
    public String getDept_name() {
        return this.dept_name;
    }
    public void setDept_name(String dept_name) {
        this.dept_name = dept_name;
        this.isset_dept_name = true;
            }
    @JsonIgnore
    public boolean isEmptyDept_name() {
        return this.dept_name == null || this.dept_name.length() == 0;
    }
 
 
    public String getOper_url() {
        return this.oper_url;
    }
    public void setOper_url(String oper_url) {
        this.oper_url = oper_url;
        this.isset_oper_url = true;
            }
    @JsonIgnore
    public boolean isEmptyOper_url() {
        return this.oper_url == null || this.oper_url.length() == 0;
    }
 
 
    public String getOper_ip() {
        return this.oper_ip;
    }
    public void setOper_ip(String oper_ip) {
        this.oper_ip = oper_ip;
        this.isset_oper_ip = true;
            }
    @JsonIgnore
    public boolean isEmptyOper_ip() {
        return this.oper_ip == null || this.oper_ip.length() == 0;
    }
 
 
    public String getOper_location() {
        return this.oper_location;
    }
    public void setOper_location(String oper_location) {
        this.oper_location = oper_location;
        this.isset_oper_location = true;
            }
    @JsonIgnore
    public boolean isEmptyOper_location() {
        return this.oper_location == null || this.oper_location.length() == 0;
    }
 
 
    public String getOper_param() {
        return this.oper_param;
    }
    public void setOper_param(String oper_param) {
        this.oper_param = oper_param;
        this.isset_oper_param = true;
            }
    @JsonIgnore
    public boolean isEmptyOper_param() {
        return this.oper_param == null || this.oper_param.length() == 0;
    }
 
 
    public String getJson_result() {
        return this.json_result;
    }
    public void setJson_result(String json_result) {
        this.json_result = json_result;
        this.isset_json_result = true;
            }
    @JsonIgnore
    public boolean isEmptyJson_result() {
        return this.json_result == null || this.json_result.length() == 0;
    }
 
 
    public Integer getStatus() {
        return this.status;
    }
    public void setStatus(Integer status) {
        this.status = status;
        this.isset_status = true;
            }
    @JsonIgnore
    public boolean isEmptyStatus() {
        return this.status == null;
    }
 
 
    public String getError_msg() {
        return this.error_msg;
    }
    public void setError_msg(String error_msg) {
        this.error_msg = error_msg;
        this.isset_error_msg = true;
            }
    @JsonIgnore
    public boolean isEmptyError_msg() {
        return this.error_msg == null || this.error_msg.length() == 0;
    }
 
 
    public Long getOper_time() {
        return this.oper_time;
    }
    public void setOper_time(Long oper_time) {
        this.oper_time = oper_time;
        this.isset_oper_time = true;
            }
    @JsonIgnore
    public boolean isEmptyOper_time() {
        return this.oper_time == null;
    }
 
 
    public Long getGroup_dept_id() {
        return this.group_dept_id;
    }
    public void setGroup_dept_id(Long group_dept_id) {
        this.group_dept_id = group_dept_id;
        this.isset_group_dept_id = true;
            }
    @JsonIgnore
    public boolean isEmptyGroup_dept_id() {
        return this.group_dept_id == null;
    }
 
 
    public Long getProvince_dept_id() {
        return this.province_dept_id;
    }
    public void setProvince_dept_id(Long province_dept_id) {
        this.province_dept_id = province_dept_id;
        this.isset_province_dept_id = true;
            }
    @JsonIgnore
    public boolean isEmptyProvince_dept_id() {
        return this.province_dept_id == null;
    }
 
 
    public Long getCity_dept_id() {
        return this.city_dept_id;
    }
    public void setCity_dept_id(Long city_dept_id) {
        this.city_dept_id = city_dept_id;
        this.isset_city_dept_id = true;
            }
    @JsonIgnore
    public boolean isEmptyCity_dept_id() {
        return this.city_dept_id == null;
    }
 
 
    public Long getCounty_dept_id() {
        return this.county_dept_id;
    }
    public void setCounty_dept_id(Long county_dept_id) {
        this.county_dept_id = county_dept_id;
        this.isset_county_dept_id = true;
            }
    @JsonIgnore
    public boolean isEmptyCounty_dept_id() {
        return this.county_dept_id == null;
    }
 
 
    public String getGroup_dept_name() {
        return this.group_dept_name;
    }
    public void setGroup_dept_name(String group_dept_name) {
        this.group_dept_name = group_dept_name;
        this.isset_group_dept_name = true;
            }
    @JsonIgnore
    public boolean isEmptyGroup_dept_name() {
        return this.group_dept_name == null || this.group_dept_name.length() == 0;
    }
 
 
    public String getProvince_dept_name() {
        return this.province_dept_name;
    }
    public void setProvince_dept_name(String province_dept_name) {
        this.province_dept_name = province_dept_name;
        this.isset_province_dept_name = true;
            }
    @JsonIgnore
    public boolean isEmptyProvince_dept_name() {
        return this.province_dept_name == null || this.province_dept_name.length() == 0;
    }
 
 
    public String getCity_dept_name() {
        return this.city_dept_name;
    }
    public void setCity_dept_name(String city_dept_name) {
        this.city_dept_name = city_dept_name;
        this.isset_city_dept_name = true;
            }
    @JsonIgnore
    public boolean isEmptyCity_dept_name() {
        return this.city_dept_name == null || this.city_dept_name.length() == 0;
    }
 
 
    public String getCounty_dept_name() {
        return this.county_dept_name;
    }
    public void setCounty_dept_name(String county_dept_name) {
        this.county_dept_name = county_dept_name;
        this.isset_county_dept_name = true;
            }
    @JsonIgnore
    public boolean isEmptyCounty_dept_name() {
        return this.county_dept_name == null || this.county_dept_name.length() == 0;
    }
 
 
    public Long getBase_dept_id() {
        return this.base_dept_id;
    }
    public void setBase_dept_id(Long base_dept_id) {
        this.base_dept_id = base_dept_id;
        this.isset_base_dept_id = true;
            }
    @JsonIgnore
    public boolean isEmptyBase_dept_id() {
        return this.base_dept_id == null;
    }
 
 
    public String getBase_dept_name() {
        return this.base_dept_name;
    }
    public void setBase_dept_name(String base_dept_name) {
        this.base_dept_name = base_dept_name;
        this.isset_base_dept_name = true;
            }
    @JsonIgnore
    public boolean isEmptyBase_dept_name() {
        return this.base_dept_name == null || this.base_dept_name.length() == 0;
    }
 
 
    public Long getBase_user_id() {
        return this.base_user_id;
    }
    public void setBase_user_id(Long base_user_id) {
        this.base_user_id = base_user_id;
        this.isset_base_user_id = true;
            }
    @JsonIgnore
    public boolean isEmptyBase_user_id() {
        return this.base_user_id == null;
    }
 
 
    public String getBase_user_name() {
        return this.base_user_name;
    }
    public void setBase_user_name(String base_user_name) {
        this.base_user_name = base_user_name;
        this.isset_base_user_name = true;
            }
    @JsonIgnore
    public boolean isEmptyBase_user_name() {
        return this.base_user_name == null || this.base_user_name.length() == 0;
    }
 
 
    public String getBase_user_code() {
        return this.base_user_code;
    }
    public void setBase_user_code(String base_user_code) {
        this.base_user_code = base_user_code;
        this.isset_base_user_code = true;
            }
    @JsonIgnore
    public boolean isEmptyBase_user_code() {
        return this.base_user_code == null || this.base_user_code.length() == 0;
    }
 
 
    public String getPsn_code() {
        return this.psn_code;
    }
    public void setPsn_code(String psn_code) {
        this.psn_code = psn_code;
        this.isset_psn_code = true;
            }
    @JsonIgnore
    public boolean isEmptyPsn_code() {
        return this.psn_code == null || this.psn_code.length() == 0;
    }
 
 
    public String getPhone() {
        return this.phone;
    }
    public void setPhone(String phone) {
        this.phone = phone;
        this.isset_phone = true;
            }
    @JsonIgnore
    public boolean isEmptyPhone() {
        return this.phone == null || this.phone.length() == 0;
    }
 
 
    public String getPhone_desen() {
        return this.phone_desen;
    }
    public void setPhone_desen(String phone_desen) {
        this.phone_desen = phone_desen;
        this.isset_phone_desen = true;
            }
    @JsonIgnore
    public boolean isEmptyPhone_desen() {
        return this.phone_desen == null || this.phone_desen.length() == 0;
    }
 
 
    /**
     * 重写 toString() 方法
     */
    @Override
    public String toString() {
        return new StringBuilder()
                .append("oper_id=").append(this.oper_id)
                .append("title=").append(this.title)
                .append("business_type=").append(this.business_type)
                .append("method=").append(this.method)
                .append("request_method=").append(this.request_method)
                .append("operate_user=").append(this.operate_user)
                .append("oper_name=").append(this.oper_name)
                .append("dept_name=").append(this.dept_name)
                .append("oper_url=").append(this.oper_url)
                .append("oper_ip=").append(this.oper_ip)
                .append("oper_location=").append(this.oper_location)
                .append("oper_param=").append(this.oper_param)
                .append("json_result=").append(this.json_result)
                .append("status=").append(this.status)
                .append("error_msg=").append(this.error_msg)
                .append("oper_time=").append(this.oper_time)
                .append("group_dept_id=").append(this.group_dept_id)
                .append("province_dept_id=").append(this.province_dept_id)
                .append("city_dept_id=").append(this.city_dept_id)
                .append("county_dept_id=").append(this.county_dept_id)
                .append("group_dept_name=").append(this.group_dept_name)
                .append("province_dept_name=").append(this.province_dept_name)
                .append("city_dept_name=").append(this.city_dept_name)
                .append("county_dept_name=").append(this.county_dept_name)
                .append("base_dept_id=").append(this.base_dept_id)
                .append("base_dept_name=").append(this.base_dept_name)
                .append("base_user_id=").append(this.base_user_id)
                .append("base_user_name=").append(this.base_user_name)
                .append("base_user_code=").append(this.base_user_code)
                .append("psn_code=").append(this.psn_code)
                .append("phone=").append(this.phone)
                .append("phone_desen=").append(this.phone_desen)
                .toString();
    }
 
    /**
     * 克隆
     */
    public S_oper_log $clone() {
        S_oper_log s_oper_log = new S_oper_log();
 
        // 数据库名称
        //s_oper_log.setDatabaseName_(this.getDatabaseName_());
 
        // 主键
        if (this.isset_oper_id) {
            s_oper_log.setOper_id(this.getOper_id());
        }
        // 普通属性
        if (this.isset_title) {
            s_oper_log.setTitle(this.getTitle());
        }
        if (this.isset_business_type) {
            s_oper_log.setBusiness_type(this.getBusiness_type());
        }
        if (this.isset_method) {
            s_oper_log.setMethod(this.getMethod());
        }
        if (this.isset_request_method) {
            s_oper_log.setRequest_method(this.getRequest_method());
        }
        if (this.isset_operate_user) {
            s_oper_log.setOperate_user(this.getOperate_user());
        }
        if (this.isset_oper_name) {
            s_oper_log.setOper_name(this.getOper_name());
        }
        if (this.isset_dept_name) {
            s_oper_log.setDept_name(this.getDept_name());
        }
        if (this.isset_oper_url) {
            s_oper_log.setOper_url(this.getOper_url());
        }
        if (this.isset_oper_ip) {
            s_oper_log.setOper_ip(this.getOper_ip());
        }
        if (this.isset_oper_location) {
            s_oper_log.setOper_location(this.getOper_location());
        }
        if (this.isset_oper_param) {
            s_oper_log.setOper_param(this.getOper_param());
        }
        if (this.isset_json_result) {
            s_oper_log.setJson_result(this.getJson_result());
        }
        if (this.isset_status) {
            s_oper_log.setStatus(this.getStatus());
        }
        if (this.isset_error_msg) {
            s_oper_log.setError_msg(this.getError_msg());
        }
        if (this.isset_oper_time) {
            s_oper_log.setOper_time(this.getOper_time());
        }
        if (this.isset_group_dept_id) {
            s_oper_log.setGroup_dept_id(this.getGroup_dept_id());
        }
        if (this.isset_province_dept_id) {
            s_oper_log.setProvince_dept_id(this.getProvince_dept_id());
        }
        if (this.isset_city_dept_id) {
            s_oper_log.setCity_dept_id(this.getCity_dept_id());
        }
        if (this.isset_county_dept_id) {
            s_oper_log.setCounty_dept_id(this.getCounty_dept_id());
        }
        if (this.isset_group_dept_name) {
            s_oper_log.setGroup_dept_name(this.getGroup_dept_name());
        }
        if (this.isset_province_dept_name) {
            s_oper_log.setProvince_dept_name(this.getProvince_dept_name());
        }
        if (this.isset_city_dept_name) {
            s_oper_log.setCity_dept_name(this.getCity_dept_name());
        }
        if (this.isset_county_dept_name) {
            s_oper_log.setCounty_dept_name(this.getCounty_dept_name());
        }
        if (this.isset_base_dept_id) {
            s_oper_log.setBase_dept_id(this.getBase_dept_id());
        }
        if (this.isset_base_dept_name) {
            s_oper_log.setBase_dept_name(this.getBase_dept_name());
        }
        if (this.isset_base_user_id) {
            s_oper_log.setBase_user_id(this.getBase_user_id());
        }
        if (this.isset_base_user_name) {
            s_oper_log.setBase_user_name(this.getBase_user_name());
        }
        if (this.isset_base_user_code) {
            s_oper_log.setBase_user_code(this.getBase_user_code());
        }
        if (this.isset_psn_code) {
            s_oper_log.setPsn_code(this.getPsn_code());
        }
        if (this.isset_phone) {
            s_oper_log.setPhone(this.getPhone());
        }
        if (this.isset_phone_desen) {
            s_oper_log.setPhone_desen(this.getPhone_desen());
        }
        return s_oper_log;
    }
}