| | |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private Integer publishLimit; |
| | | |
| | | @ApiModelProperty("到期时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date expireAt; |
| | | |
| | | @ApiModelProperty("商家地址") |
| | |
| | | private String introduction; |
| | | |
| | | @ApiModelProperty("首次点亮时间") |
| | | private Date firstLit; |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date firstLitAt; |
| | | |
| | | @ApiModelProperty("账号状态(1.启用 2.禁用)") |
| | | private Integer accountStatus; |
| | | |
| | | @ApiModelProperty("空闲戳戳点") |
| | | private Integer idleTotal; |
| | | } |