无关风月
2024-12-31 0c51a577db337520452022d9d6a22b720ef858d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.xinquan.user.api.domain.dto;
 
import com.xinquan.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author mitao
 * @date 2024/9/7
 */
@Data
@ApiModel(value = "管理后台用户兑换记录明细DTO")
public class UserExchangeRecordDTO extends BasePage {
    @ApiModelProperty(value = "奖品名称")
    private String name;
    @ApiModelProperty(value = "兑换状态 1待领取2已兑换")
    private Integer state;
    @ApiModelProperty(value = "操作时间 2020-11-11 - 2021-11-11")
    private String time;
    @ApiModelProperty(value = "用户uid")
    private String uid;
 
}