111 lines
1.6 KiB
Java
111 lines
1.6 KiB
Java
package lingtao.net.bean;
|
|
|
|
import java.util.Date;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class CustomerTrainKindLabel {
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getProType() {
|
|
return proType;
|
|
}
|
|
|
|
public void setProType(String proType) {
|
|
this.proType = proType;
|
|
}
|
|
|
|
public String getKindLabel() {
|
|
return kindLabel;
|
|
}
|
|
|
|
public void setKindLabel(String kindLabel) {
|
|
this.kindLabel = kindLabel;
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
|
|
public Integer getSort() {
|
|
return sort;
|
|
}
|
|
|
|
public void setSort(Integer sort) {
|
|
this.sort = sort;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getCreateBy() {
|
|
return createBy;
|
|
}
|
|
|
|
public void setCreateBy(String createBy) {
|
|
this.createBy = createBy;
|
|
}
|
|
|
|
public Date getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(Date createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
public String getUpdateBy() {
|
|
return updateBy;
|
|
}
|
|
|
|
public void setUpdateBy(String updateBy) {
|
|
this.updateBy = updateBy;
|
|
}
|
|
|
|
public Date getUpdateDate() {
|
|
return updateDate;
|
|
}
|
|
|
|
public void setUpdateDate(Date updateDate) {
|
|
this.updateDate = updateDate;
|
|
}
|
|
|
|
private Integer id;
|
|
|
|
private String proType;
|
|
|
|
private String kindLabel;
|
|
|
|
private String remark;
|
|
|
|
private Integer sort;
|
|
|
|
private String type;
|
|
|
|
private String createBy;
|
|
|
|
private Date createDate;
|
|
|
|
private String updateBy;
|
|
|
|
private Date updateDate;
|
|
|
|
}
|