package com.java110.dto.supplierKey;
|
|
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 SupplierKeyDto extends PageDto implements Serializable {
|
|
private String name;
|
private String keyId;
|
private String beanName;
|
private String remark;
|
private String columnKey;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getKeyId() {
|
return keyId;
|
}
|
public void setKeyId(String keyId) {
|
this.keyId = keyId;
|
}
|
public String getBeanName() {
|
return beanName;
|
}
|
public void setBeanName(String beanName) {
|
this.beanName = beanName;
|
}
|
public String getRemark() {
|
return remark;
|
}
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
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;
|
}
|
}
|