TRX 1 рік тому
батько
коміт
caf1de3d89

+ 16 - 0
FullCardClient/src/main/java/com/zhongshu/card/client/model/org/UserCountModel.java

@@ -1,6 +1,7 @@
 package com.zhongshu.card.client.model.org;
 
 import com.zhongshu.card.client.model.base.SuperModel;
+import com.zhongshu.card.client.utils.type.CertificateType;
 import com.zhongshu.card.client.utils.type.Sex;
 import com.zhongshu.card.client.utils.type.UserLoginType;
 import com.zhongshu.card.client.utils.type.UserState;
@@ -48,6 +49,21 @@ public class UserCountModel extends SuperModel {
         return "";
     }
 
+    @Schema(description = "证件类型")
+    private CertificateType certificateType = CertificateType.IDCard;
+
+    private String certificateTypeStr;
+
+    public String getCertificateTypeStr() {
+        if (certificateType != null) {
+            return certificateType.getRemark();
+        }
+        return "";
+    }
+
+    @Schema(description = "证件号码")
+    private String cardNumber;
+
     @Schema(description = "地址")
     private String address;