package com.matrix.system.hive.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* @author wzy
|
* @date 2021-01-22
|
**/
|
public class SysVipLabelRelate implements Serializable {
|
private static final long serialVersionUID = 1860770077746416680L;
|
|
private Long id;
|
|
private Long labelId;
|
|
private Long vipId;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getLabelId() {
|
return labelId;
|
}
|
|
public void setLabelId(Long labelId) {
|
this.labelId = labelId;
|
}
|
|
public Long getVipId() {
|
return vipId;
|
}
|
|
public void setVipId(Long vipId) {
|
this.vipId = vipId;
|
}
|
}
|