1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| package cc.mrbird.febs.dapp.entity;
|
| import cc.mrbird.febs.common.controller.BaseController;
| import cc.mrbird.febs.common.entity.BaseEntity;
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * @author wzy
| * @date 2022-08-11
| **/
| @Data
| @TableName("dapp_nft_activation")
| public class DappNftActivation extends BaseEntity {
|
| private Long memberId;
|
| private Integer count;
|
| private String hash;
|
| private Date openTime;
|
| /**
| * 状态 1-待激活 2-已过期
| */
| private Integer status;
|
| private Long flowId;
|
| private Date expireTime;
| }
|
|