训练模型

This commit is contained in:
2025-10-24 16:50:40 +08:00
parent cfa09a1178
commit 431870d579
24 changed files with 475 additions and 104 deletions

View File

@@ -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;