| | |
| | | package com.xcong.excoin.modules.agent.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | |
| | | /** |
| | | * 实名状态 |
| | | */ |
| | | //@TableField(exist = false) |
| | | private Integer certifyStatus; |
| | | |
| | | private Integer accountType; |
| | | private Integer accountStatus; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date startTime; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date endTime; |
| | | |
| | | } |