whyczh
2021-04-02 7e9dd7ac44cec89b4588363166b408e15be2d78c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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;
    }
}