wzy
2021-01-13 95a75fc2342ed20f2b31eeb30a6171222c2faedf
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
package com.matrix.system.hive.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
/**
 * @description 客户相册
 * @author 
 * @date 2021-01-10 15:15
 */
public class SysVipAlbum  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
    public static final int SOURCE_FOLLOW = 1;
    public static final int SOURCE_SKILL = 2;
 
    
    /**
     * 主键
     */
    private Long  id;
            
    
    /**
     * 客户ID
     */
    private Long  vipId;
            
    
    /**
     * 图片路径
     */
    private String  img;
            
    
    /**
     * 来源1,跟进,2批发检测
     */
    private Integer  source;
            
    
    /**
     * 来源主键
     */
    private Long  sourceId;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getVipId() {
        return vipId;
    }
 
    public void setVipId(Long vipId) {
        this.vipId = vipId;
    }
 
    public String getImg() {
        return img;
    }
       
       public SysVipAlbum setImg(String img) {
        this.img=img;
        return this;
    }
       
 
    public Integer getSource() {
        return source;
    }
       
       public SysVipAlbum setSource(Integer source) {
        this.source=source;
        return this;
    }
       
 
    public Long getSourceId() {
        return sourceId;
    }
       
       public SysVipAlbum setSourceId(Long sourceId) {
        this.sourceId=sourceId;
        return this;
    }
       
 
 
  
}