package com.java110.dto.meter;
|
|
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 MeterMachineFactorySpecDto extends PageDto implements Serializable {
|
|
private String specId;
|
private String specName;
|
private String factoryId;
|
private String[] factoryIds;
|
private String remark;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getSpecId() {
|
return specId;
|
}
|
|
public void setSpecId(String specId) {
|
this.specId = specId;
|
}
|
|
public String getSpecName() {
|
return specName;
|
}
|
|
public void setSpecName(String specName) {
|
this.specName = specName;
|
}
|
|
public String getFactoryId() {
|
return factoryId;
|
}
|
|
public void setFactoryId(String factoryId) {
|
this.factoryId = factoryId;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
|
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[] getFactoryIds() {
|
return factoryIds;
|
}
|
|
public void setFactoryIds(String[] factoryIds) {
|
this.factoryIds = factoryIds;
|
}
|
}
|