package com.java110.dto.machine;
|
|
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 MachineTypeDto extends PageDto implements Serializable {
|
|
private String machineTypeName;
|
private String typeId;
|
private String parentTypeId;
|
private String machineTypeCd;
|
private String communityId;
|
private String[] communityIds;
|
private String communityName;
|
private String isEnable;
|
private String machineTypeCode;
|
private String unit;
|
private String importanceLevel;
|
private String seq;
|
private String remark;
|
private String warrantyDeadline;
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getMachineTypeName() {
|
return machineTypeName;
|
}
|
|
public void setMachineTypeName(String machineTypeName) {
|
this.machineTypeName = machineTypeName;
|
}
|
|
public String getTypeId() {
|
return typeId;
|
}
|
|
public void setTypeId(String typeId) {
|
this.typeId = typeId;
|
}
|
|
public String getMachineTypeCd() {
|
return machineTypeCd;
|
}
|
|
public void setMachineTypeCd(String machineTypeCd) {
|
this.machineTypeCd = machineTypeCd;
|
}
|
|
|
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 getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getParentTypeId() {
|
return parentTypeId;
|
}
|
|
public void setParentTypeId(String parentTypeId) {
|
this.parentTypeId = parentTypeId;
|
}
|
|
public String getIsEnable() {
|
return isEnable;
|
}
|
|
public void setIsEnable(String isEnable) {
|
this.isEnable = isEnable;
|
}
|
|
public String getMachineTypeCode() {
|
return machineTypeCode;
|
}
|
|
public void setMachineTypeCode(String machineTypeCode) {
|
this.machineTypeCode = machineTypeCode;
|
}
|
|
public String getUnit() {
|
return unit;
|
}
|
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
|
public String getImportanceLevel() {
|
return importanceLevel;
|
}
|
|
public void setImportanceLevel(String importanceLevel) {
|
this.importanceLevel = importanceLevel;
|
}
|
|
public String getSeq() {
|
return seq;
|
}
|
|
public void setSeq(String seq) {
|
this.seq = seq;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getWarrantyDeadline() {
|
return warrantyDeadline;
|
}
|
|
public void setWarrantyDeadline(String warrantyDeadline) {
|
this.warrantyDeadline = warrantyDeadline;
|
}
|
|
public String getCommunityName() {
|
return communityName;
|
}
|
|
public void setCommunityName(String communityName) {
|
this.communityName = communityName;
|
}
|
|
public String[] getCommunityIds() {
|
return communityIds;
|
}
|
|
public void setCommunityIds(String[] communityIds) {
|
this.communityIds = communityIds;
|
}
|
}
|