first commit

This commit is contained in:
2025-02-20 15:14:38 +08:00
commit 70e3764011
1113 changed files with 107789 additions and 0 deletions
@@ -0,0 +1,110 @@
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;
}