| | |
| | | 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; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | |
| | | @TableField(exist = false) |
| | | private Long couponId; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @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; |
| | | |
| | | private Date vipLevelTime; |
| | | //是否是医生 0-否 1-是 |
| | | private Integer doctorState; |
| | | //是否是核销员 0-否 1-是 |
| | | private Integer checkOrder; |
| | | } |