admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.yeshi.fanli.entity.bus.user;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 禁止用户的标识
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_forbidden_user_identify_code")
public class ForbiddenUserIdentifyCode {
 
    public enum ForbiddenUserIdentifyCodeTypeEnum {
        wxUnionId("微信unionId"), taobaoUid("淘宝ID"), phone("手机号"), alipayAccount("支付宝账号");
        private final String desc;
 
        private ForbiddenUserIdentifyCodeTypeEnum(String desc) {
            this.desc = desc;
        }
 
        public String getDesc() {
            return desc;
        }
    }
 
    @Column(name = "fuc_id")
    private Long id;
    @Column(name = "fuc_type")
    private ForbiddenUserIdentifyCodeTypeEnum type;
    @Column(name = "fuc_identify_code")
    private String identifyCode;
    @Column(name = "fuc_effective")
    private Boolean effective;// 是否生效
    @Column(name = "fuc_beizhu")
    private String beiZhu;
    @Column(name = "fuc_create_time")
    private Date createTime;
    @Column(name = "fuc_update_time")
    private Date updateTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public ForbiddenUserIdentifyCodeTypeEnum getType() {
        return type;
    }
 
    public void setType(ForbiddenUserIdentifyCodeTypeEnum type) {
        this.type = type;
    }
 
    public String getIdentifyCode() {
        return identifyCode;
    }
 
    public void setIdentifyCode(String identifyCode) {
        this.identifyCode = identifyCode;
    }
 
    public Boolean getEffective() {
        return effective;
    }
 
    public void setEffective(Boolean effective) {
        this.effective = effective;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getBeiZhu() {
        return beiZhu;
    }
 
    public void setBeiZhu(String beiZhu) {
        this.beiZhu = beiZhu;
    }
 
}