xiaoyong931011
2023-09-14 eeccae86c34ed71a3ebb3d59900def3f2c1f6fe5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cc.mrbird.febs.dapp.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2022-08-11
 **/
@Data
@ApiModel(value = "ActiveNftListVo", description = "卡牌列表")
public class ActiveNftListVo {
 
    @ApiModelProperty(value = "待激活ID")
    private Long id;
 
    @ApiModelProperty(value = "倒计时(剩余多少秒)")
    private Long remain;
 
    @ApiModelProperty(value = "剩余张数")
    private Integer count;
}