zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package com.shlanbao.tzsc.base.mapping;
 
import java.io.Serializable;
import java.util.Date;
 
 
public class EqmProtectRecordBean implements Serializable{
    private String id;//ID     
    private String equ_name;//设备名称
    private String ep_shift; //班次
    private String ep_team; //班组
    private String ep_stime; //计划开始时间
    private String ep_etime; //计划结束时间
    private String ep_name;     //保养名称
    private String epr_time;//实际保养日期
    private String epr_username;//保养人
    
    private String stime; //开始时间
    private String etime; //结束时间
    
    private String equ_id; // 设备ID
    private String status; // 保养状态
    private String eqpTypeName; // sys_eqp_type中name字段
    private String eqpTypeDES; // sys_eqp_type中des字段
    
    
    public String getEqpTypeName() {
        return eqpTypeName;
    }
    public void setEqpTypeName(String eqpTypeName) {
        this.eqpTypeName = eqpTypeName;
    }
    public String getEqpTypeDES() {
        return eqpTypeDES;
    }
    public void setEqpTypeDES(String eqpTypeDES) {
        this.eqpTypeDES = eqpTypeDES;
    }
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    public String getEqu_id() {
        return equ_id;
    }
    public void setEqu_id(String equ_id) {
        this.equ_id = equ_id;
    }
    public String getEp_etime() {
        return ep_etime;
    }
    public void setEp_etime(String ep_etime) {
        this.ep_etime = ep_etime;
    }
    
    
    
    public String getEp_stime() {
        return ep_stime;
    }
    public void setEp_stime(String ep_stime) {
        this.ep_stime = ep_stime;
    }
    public String getEpr_time() {
        return epr_time;
    }
    public void setEpr_time(String epr_time) {
        this.epr_time = epr_time;
    }
    public String getStime() {
        return stime;
    }
    public void setStime(String stime) {
        this.stime = stime;
    }
    public String getEtime() {
        return etime;
    }
    public void setEtime(String etime) {
        this.etime = etime;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getEqu_name() {
        return equ_name;
    }
    public void setEqu_name(String equ_name) {
        this.equ_name = equ_name;
    }
    public String getEp_shift() {
        return ep_shift;
    }
    public void setEp_shift(String ep_shift) {
        this.ep_shift = ep_shift;
    }
    public String getEp_team() {
        return ep_team;
    }
    public void setEp_team(String ep_team) {
        this.ep_team = ep_team;
    }
    
    public String getEp_name() {
        return ep_name;
    }
    public void setEp_name(String ep_name) {
        this.ep_name = ep_name;
    }
    
    public String getEpr_username() {
        return epr_username;
    }
    public void setEpr_username(String epr_username) {
        this.epr_username = epr_username;
    }
    
    
    
}