Helius
2020-11-19 ac5051ef7aa0ea4410d32760a200e2dc31ef870e
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 com.xcong.excoin.modules.member.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2020-11-09
 **/
@Data
@TableName("trc_address")
public class TrcAddressEntity {
 
    public static final Integer SYSTEM_FLAG_YJS = 1;
    public static final Integer SYSTEM_FLAG_SL = 2;
 
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    private String address;
 
    private int isUse;
 
    private Long memberId;
 
    private Integer systemFlag;
}