zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.pms.equ.overhaul.beans;
 
/**
 * 维修呼叫记录
 * @author shisihai
 *
 */
public class RepairCallInfoBean {
    private String id;
    private String eqpName;
    private String teamName;
    private String shiftName;
    private Double duration;//维修时长(分钟)
    private String repairPersion;//维修人
    private String callTime;//呼叫时间
    private String repairTime;//受理时间
    private String finishedTime;//结束时间
    private String repairType;//维修类型 1机械  2 电气
    private String troubleInfo;//故障信息
    private String callPersion;//呼叫人
    private String mesId;//维保工单id
    private String status;//状态0未处理  1处理中   2 已完成
    
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    public String getMesId() {
        return mesId;
    }
    public void setMesId(String mesId) {
        this.mesId = mesId;
    }
    public String getTroubleInfo() {
        return troubleInfo;
    }
    public void setTroubleInfo(String troubleInfo) {
        this.troubleInfo = troubleInfo;
    }
    public String getCallPersion() {
        return callPersion;
    }
    public void setCallPersion(String callPersion) {
        this.callPersion = callPersion;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getEqpName() {
        return eqpName;
    }
    public void setEqpName(String eqpName) {
        this.eqpName = eqpName;
    }
    public String getTeamName() {
        return teamName;
    }
    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }
    public String getShiftName() {
        return shiftName;
    }
    public void setShiftName(String shiftName) {
        this.shiftName = shiftName;
    }
    public Double getDuration() {
        return duration;
    }
    public void setDuration(Double duration) {
        this.duration = duration;
    }
    public String getRepairPersion() {
        return repairPersion;
    }
    public void setRepairPersion(String repairPersion) {
        this.repairPersion = repairPersion;
    }
    public String getCallTime() {
        return callTime;
    }
    public void setCallTime(String callTime) {
        this.callTime = callTime;
    }
    public String getRepairTime() {
        return repairTime;
    }
    public void setRepairTime(String repairTime) {
        this.repairTime = repairTime;
    }
    public String getFinishedTime() {
        return finishedTime;
    }
    public void setFinishedTime(String finishedTime) {
        this.finishedTime = finishedTime;
    }
    public String getRepairType() {
        return repairType;
    }
    public void setRepairType(String repairType) {
        this.repairType = repairType;
    }
    
}