| | |
| | | package cc.mrbird.febs.mall.entity; |
| | | |
| | | import cc.mrbird.febs.common.controller.BaseController; |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | |
| | | /** |
| | | * 禁用 |
| | | */ |
| | | public static final Integer ACCOUNT_STATUS_DISABLED = 2; |
| | | public static final Integer ACCOUNT_STATUS_DISABLED = 0; |
| | | |
| | | /** |
| | | * 账号类型 |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date birthday; |
| | | |
| | | @DateTimeFormat(pattern = "MM-dd") |
| | | @JsonFormat(pattern = "MM-dd", timezone = "GMT+8") |
| | | @TableField(exist = false) |
| | | private Date birthdayQuery; |
| | | |
| | | private String realName; |
| | | |
| | | private Date lastLoginTime; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date vipLevelTime; |
| | | } |