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
| 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 tokenId;
|
| private String hash;
|
| private Date openTime;
|
| private Integer status;
|
| private Long flowId;
| }
|
|