| | |
| | | package cc.mrbird.febs.mall.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty(value = "1:未提成 2:已提成") |
| | | private Integer state; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @ApiModelProperty(value = "创建时间") |
| | | private Date createdTime; |
| | | |
| | | @ApiModelProperty(value = "产品名称") |
| | | private String goodsName;; |
| | | private String goodsName; |
| | | |
| | | @ApiModelProperty(value = "下单人昵称") |
| | | private String nickname; |
| | | |
| | | } |