训练模型
This commit is contained in:
@@ -38,7 +38,7 @@ public class CIDUserResp implements Serializable{
|
||||
private String email;
|
||||
|
||||
@Schema(description = "用户状态(0-正常,1-冻结;默认值为0,确保新用户默认正常)")
|
||||
private Boolean status;
|
||||
private Integer status;
|
||||
|
||||
@Schema(description = "身份证号(18位,符合身份证格式,可选,建议唯一)")
|
||||
private String idCard;
|
||||
@@ -56,10 +56,10 @@ public class CIDUserResp implements Serializable{
|
||||
private LocalDate birthDate;
|
||||
|
||||
@Schema(description = "性别(0-未知,1-男性,2-女性;默认值为0)")
|
||||
private Boolean sex;
|
||||
private Integer sex;
|
||||
|
||||
@Schema(description = "是否有员工账号(0-无,1-有;布尔类型映射为tinyint,默认0)")
|
||||
private Boolean noSysStaff;
|
||||
private Integer noSysStaff;
|
||||
|
||||
@Schema(description = "用户所属租户ID(多租户场景下的租户标识,可选)")
|
||||
private Long tenantId;
|
||||
|
||||
Reference in New Issue
Block a user