package com.whyc.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
public class DeviceMaintainDTO {
|
|
/**入库时间*/
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "Asia/Shanghai")
|
private Date createTime;
|
/**最后维护时间*/
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "Asia/Shanghai")
|
private Date lastMaintainTime;
|
/**设备类型*/
|
private Integer deviceTypeId;
|
/**所在区域*/
|
private String site;
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getLastMaintainTime() {
|
return lastMaintainTime;
|
}
|
|
public void setLastMaintainTime(Date lastMaintainTime) {
|
this.lastMaintainTime = lastMaintainTime;
|
}
|
|
public Integer getDeviceTypeId() {
|
return deviceTypeId;
|
}
|
|
public void setDeviceTypeId(Integer deviceTypeId) {
|
this.deviceTypeId = deviceTypeId;
|
}
|
|
public String getSite() {
|
return site;
|
}
|
|
public void setSite(String site) {
|
this.site = site;
|
}
|
}
|