package com.java110.dto.supplierConfig;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 供应商配置数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class SupplierConfigDto extends PageDto implements Serializable {
|
|
private String supplierId;
|
private String configId;
|
private String columnValue;
|
private String columnKey;
|
private String name;
|
private String remark;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getSupplierId() {
|
return supplierId;
|
}
|
|
public void setSupplierId(String supplierId) {
|
this.supplierId = supplierId;
|
}
|
|
public String getConfigId() {
|
return configId;
|
}
|
|
public void setConfigId(String configId) {
|
this.configId = configId;
|
}
|
|
public String getColumnValue() {
|
return columnValue;
|
}
|
|
public void setColumnValue(String columnValue) {
|
this.columnValue = columnValue;
|
}
|
|
public String getColumnKey() {
|
return columnKey;
|
}
|
|
public void setColumnKey(String columnKey) {
|
this.columnKey = columnKey;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
}
|