| | |
| | | @ExcelProperty(value = "奖品名称",index = 4) |
| | | private String prizeName; |
| | | |
| | | @ApiModelProperty(value = "奖品图片") |
| | | @ExcelProperty(value = "奖品图片",index = 5) |
| | | private URL imageUrl; |
| | | |
| | | @ApiModelProperty(value = "核销人名称") |
| | | @ExcelProperty(value = "核销人",index = 6) |
| | | @ExcelProperty(value = "核销人",index = 5) |
| | | private String staffName; |
| | | |
| | | @ApiModelProperty(value = "核销时间") |
| | | @ExcelProperty(value = "核销时间",index = 7) |
| | | @ExcelProperty(value = "核销时间",index = 6) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date staffTime; |
| | | |
| | | @ExcelProperty(value = "状态",index = 7) |
| | | private String status; |
| | | |
| | | public String getStatus() { |
| | | if("1".equals(this.status)){ |
| | | return "待兑奖"; |
| | | } |
| | | if("2".equals(this.status)){ |
| | | return "已兑奖"; |
| | | } |
| | | if("3".equals(this.status)){ |
| | | return "已失效"; |
| | | } |
| | | return ""; |
| | | } |
| | | } |