fanxw 3 週間 前
コミット
0b3ddae1e3
共有1 個のファイルを変更した18 個の追加0 個の削除を含む
  1. 18 0
      src/main/java/com/chinaitop/depot/system/model/UserInfo.java

+ 18 - 0
src/main/java/com/chinaitop/depot/system/model/UserInfo.java

@@ -55,6 +55,7 @@ public class UserInfo implements Serializable{
55
 
55
 
56
     private String bmmc;
56
     private String bmmc;
57
 
57
 
58
+    //在岗状态
58
     private String zgzt;
59
     private String zgzt;
59
 
60
 
60
     private Date lzrq;
61
     private Date lzrq;
@@ -73,6 +74,7 @@ public class UserInfo implements Serializable{
73
 
74
 
74
     private String zw;
75
     private String zw;
75
 
76
 
77
+    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
76
     private Date rzrq;
78
     private Date rzrq;
77
 
79
 
78
     private String gwxz;
80
     private String gwxz;
@@ -442,10 +444,18 @@ public class UserInfo implements Serializable{
442
         this.bmmc = bmmc;
444
         this.bmmc = bmmc;
443
     }
445
     }
444
 
446
 
447
+    /**
448
+     * 在岗状态
449
+     * @return
450
+     */
445
     public String getZgzt() {
451
     public String getZgzt() {
446
         return zgzt;
452
         return zgzt;
447
     }
453
     }
448
 
454
 
455
+    /**
456
+     * 在岗状态
457
+     * @param zgzt
458
+     */
449
     public void setZgzt(String zgzt) {
459
     public void setZgzt(String zgzt) {
450
         this.zgzt = zgzt;
460
         this.zgzt = zgzt;
451
     }
461
     }
@@ -506,10 +516,18 @@ public class UserInfo implements Serializable{
506
         this.xl = xl;
516
         this.xl = xl;
507
     }
517
     }
508
 
518
 
519
+    /**
520
+     * 职务
521
+     * @return
522
+     */
509
     public String getZw() {
523
     public String getZw() {
510
         return zw;
524
         return zw;
511
     }
525
     }
512
 
526
 
527
+    /**
528
+     * 职务
529
+     * @param zw
530
+     */
513
     public void setZw(String zw) {
531
     public void setZw(String zw) {
514
         this.zw = zw;
532
         this.zw = zw;
515
     }
533
     }