package com.ks.vip.pojo.DO;
|
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
import javax.validation.Valid;
|
import javax.validation.constraints.NotNull;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Table("vip_grade")
|
@Valid
|
public class VipGrade implements Serializable {
|
|
@Column(name = "g_id")
|
private Long id;
|
|
@Column(name = "g_name")
|
private String name;
|
|
@Column(name = "g_icon")
|
private String icon;
|
|
@Column(name = "g_sort")
|
private Integer sort;
|
|
@Column(name = "g_state")
|
private Integer state;
|
|
@Column(name = "g_creator_id")
|
private Long creatorId;
|
|
@Column(name = "g_create_time")
|
private Date createTime;
|
|
@Column(name = "g_updator_id")
|
private Long updatorId;
|
|
@Column(name = "g_update_time")
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public Integer getSort() {
|
return sort;
|
}
|
|
public void setSort(Integer sort) {
|
this.sort = sort;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public Long getCreatorId() {
|
return creatorId;
|
}
|
|
public void setCreatorId(Long creatorId) {
|
this.creatorId = creatorId;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Long getUpdatorId() {
|
return updatorId;
|
}
|
|
public void setUpdatorId(Long updatorId) {
|
this.updatorId = updatorId;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|