zj
2024-06-03 5668aa7dc743d930b4b09dce1e7ccbba371e93cf
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package org.example.ssmico.demos.web.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @program: ssm-ico
 * @description:
 * @create: 2024-04-16 18:10
 **/
@Data
public class TUserPayAddress implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
 
    /**
     * id
     */
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    /**
     * 用户id
     */
    private String partyUuid;
 
    /**
     * 地址
     */
    private String address;
 
    /**
     * 数字货币类型
     */
    private String type;
 
    /**
     * 创建时间
     */
    private Date createdAt;
 
    /**
     * 修改时间
     */
    private Date updatedAt;
 
}