| | |
| | | package com.ruoyi.company.api.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | |
| | | @Schema(description = "用户名称") |
| | | private String userName; |
| | | |
| | | /** 头像 */ |
| | | @Schema(description = "头像") |
| | | private String avatar; |
| | | |
| | | /** 注册时间 */ |
| | | @Schema(description = "注册时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime registerTime; |
| | | |
| | | /** 绑定手机号 */ |