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; } }