fix
Helius
2022-08-08 d1ace3871c22f26a26cd6d109b5602a9d5c9066a
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
package cc.mrbird.febs.dapp.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author wzy
 * @date 2022-07-28
 **/
@Data
@TableName("dapp_member_box_record")
public class DappMemberBoxRecordEntity {
 
    private Date createTime = new Date();
 
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
 
    private Long memberId;
 
    private String address;
 
    private Long fromMemberId;
 
    private String fromAddress;
}