xuhy
2025-10-13 782cef1a49bb665fd88f3850a9193c08d63ef1d5
ruoyi-system/src/main/java/com/ruoyi/system/model/TSysAppUser.java
@@ -9,6 +9,7 @@
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
/**
@@ -39,9 +40,9 @@
    private String phone;
    @ApiModelProperty(value = "出生日期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @TableField("birth_time")
    private LocalDateTime birthTime;
    private LocalDate birthTime;
    @ApiModelProperty(value = "性别 1=男 2=女")
    @TableField("sex")
@@ -68,4 +69,8 @@
    @TableField("last_reminder_time")
    private LocalDateTime lastReminderTime;
    @ApiModelProperty(value = "诊所id")
    @TableField("clinic_id")
    private String clinicId;
}