| | |
| | | package com.matrix.system.shopXcx.api.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.matrix.system.shopXcx.bean.ShopLogisticsInfo; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "SeeAwardTextVo", description = "劵码信息") |
| | | public class SeeAwardTextVo { |
| | | |
| | | @ApiModelProperty(value ="中奖记录ID") |
| | | private long id; |
| | | |
| | | @ApiModelProperty(value ="奖项名称") |
| | | private String awardName; |
| | |
| | | @ApiModelProperty(value =" 是否已领取(1:待领取2:已领取)") |
| | | private Integer state; |
| | | |
| | | @ApiModelProperty(value ="物流信息记录") |
| | | private List<ShopLogisticsInfo> shopLogisticsInfos; |
| | | |
| | | } |