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;
|
}
|
|
}
|