|
@@ -19,17 +19,24 @@ public class FaultCase extends BaseEntity
|
|
|
private Long id;
|
|
|
|
|
|
/** 机型 */
|
|
|
- @Excel(name = "机型")
|
|
|
+
|
|
|
private Long aircraftTypeId;
|
|
|
|
|
|
+ @Excel(name = "机型")
|
|
|
+ private String aircraftTypeName;
|
|
|
+
|
|
|
/** 系统 */
|
|
|
- @Excel(name = "系统")
|
|
|
private Long aircraftSystemId;
|
|
|
|
|
|
+ @Excel(name = "系统")
|
|
|
+ private String aircraftSystemName;
|
|
|
+
|
|
|
/** 分系统 */
|
|
|
- @Excel(name = "分系统")
|
|
|
private Long aircraftSubsystemId;
|
|
|
|
|
|
+ @Excel(name = "分系统")
|
|
|
+ private String aircraftSubsystemName;
|
|
|
+
|
|
|
/** 故障现象 */
|
|
|
@Excel(name = "故障现象")
|
|
|
private String faultPhenomenon;
|
|
@@ -54,114 +61,126 @@ public class FaultCase extends BaseEntity
|
|
|
@Excel(name = "浏览次数")
|
|
|
private Long viewCount;
|
|
|
|
|
|
- public void setId(Long id)
|
|
|
- {
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public Long getId()
|
|
|
- {
|
|
|
- return id;
|
|
|
+ public Long getAircraftTypeId() {
|
|
|
+ return aircraftTypeId;
|
|
|
}
|
|
|
- public void setAircraftTypeId(Long aircraftTypeId)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setAircraftTypeId(Long aircraftTypeId) {
|
|
|
this.aircraftTypeId = aircraftTypeId;
|
|
|
}
|
|
|
|
|
|
- public Long getAircraftTypeId()
|
|
|
- {
|
|
|
- return aircraftTypeId;
|
|
|
+ public String getAircraftTypeName() {
|
|
|
+ return aircraftTypeName;
|
|
|
}
|
|
|
- public void setAircraftSystemId(Long aircraftSystemId)
|
|
|
- {
|
|
|
- this.aircraftSystemId = aircraftSystemId;
|
|
|
+
|
|
|
+ public void setAircraftTypeName(String aircraftTypeName) {
|
|
|
+ this.aircraftTypeName = aircraftTypeName;
|
|
|
}
|
|
|
|
|
|
- public Long getAircraftSystemId()
|
|
|
- {
|
|
|
+ public Long getAircraftSystemId() {
|
|
|
return aircraftSystemId;
|
|
|
}
|
|
|
- public void setAircraftSubsystemId(Long aircraftSubsystemId)
|
|
|
- {
|
|
|
- this.aircraftSubsystemId = aircraftSubsystemId;
|
|
|
+
|
|
|
+ public void setAircraftSystemId(Long aircraftSystemId) {
|
|
|
+ this.aircraftSystemId = aircraftSystemId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAircraftSystemName() {
|
|
|
+ return aircraftSystemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAircraftSystemName(String aircraftSystemName) {
|
|
|
+ this.aircraftSystemName = aircraftSystemName;
|
|
|
}
|
|
|
|
|
|
- public Long getAircraftSubsystemId()
|
|
|
- {
|
|
|
+ public Long getAircraftSubsystemId() {
|
|
|
return aircraftSubsystemId;
|
|
|
}
|
|
|
- public void setFaultPhenomenon(String faultPhenomenon)
|
|
|
- {
|
|
|
- this.faultPhenomenon = faultPhenomenon;
|
|
|
+
|
|
|
+ public void setAircraftSubsystemId(Long aircraftSubsystemId) {
|
|
|
+ this.aircraftSubsystemId = aircraftSubsystemId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAircraftSubsystemName() {
|
|
|
+ return aircraftSubsystemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAircraftSubsystemName(String aircraftSubsystemName) {
|
|
|
+ this.aircraftSubsystemName = aircraftSubsystemName;
|
|
|
}
|
|
|
|
|
|
- public String getFaultPhenomenon()
|
|
|
- {
|
|
|
+ public String getFaultPhenomenon() {
|
|
|
return faultPhenomenon;
|
|
|
}
|
|
|
- public void setFaultCause(String faultCause)
|
|
|
- {
|
|
|
- this.faultCause = faultCause;
|
|
|
+
|
|
|
+ public void setFaultPhenomenon(String faultPhenomenon) {
|
|
|
+ this.faultPhenomenon = faultPhenomenon;
|
|
|
}
|
|
|
|
|
|
- public String getFaultCause()
|
|
|
- {
|
|
|
+ public String getFaultCause() {
|
|
|
return faultCause;
|
|
|
}
|
|
|
- public void setFaultTreePath(String faultTreePath)
|
|
|
- {
|
|
|
- this.faultTreePath = faultTreePath;
|
|
|
+
|
|
|
+ public void setFaultCause(String faultCause) {
|
|
|
+ this.faultCause = faultCause;
|
|
|
}
|
|
|
|
|
|
- public String getFaultTreePath()
|
|
|
- {
|
|
|
+ public String getFaultTreePath() {
|
|
|
return faultTreePath;
|
|
|
}
|
|
|
- public void setFaultPicturePath(String faultPicturePath)
|
|
|
- {
|
|
|
- this.faultPicturePath = faultPicturePath;
|
|
|
+
|
|
|
+ public void setFaultTreePath(String faultTreePath) {
|
|
|
+ this.faultTreePath = faultTreePath;
|
|
|
}
|
|
|
|
|
|
- public String getFaultPicturePath()
|
|
|
- {
|
|
|
+ public String getFaultPicturePath() {
|
|
|
return faultPicturePath;
|
|
|
}
|
|
|
- public void setTroubleshootingMethodPath(String troubleshootingMethodPath)
|
|
|
- {
|
|
|
- this.troubleshootingMethodPath = troubleshootingMethodPath;
|
|
|
+
|
|
|
+ public void setFaultPicturePath(String faultPicturePath) {
|
|
|
+ this.faultPicturePath = faultPicturePath;
|
|
|
}
|
|
|
|
|
|
- public String getTroubleshootingMethodPath()
|
|
|
- {
|
|
|
+ public String getTroubleshootingMethodPath() {
|
|
|
return troubleshootingMethodPath;
|
|
|
}
|
|
|
- public void setViewCount(Long viewCount)
|
|
|
- {
|
|
|
- this.viewCount = viewCount;
|
|
|
+
|
|
|
+ public void setTroubleshootingMethodPath(String troubleshootingMethodPath) {
|
|
|
+ this.troubleshootingMethodPath = troubleshootingMethodPath;
|
|
|
}
|
|
|
|
|
|
- public Long getViewCount()
|
|
|
- {
|
|
|
+ public Long getViewCount() {
|
|
|
return viewCount;
|
|
|
}
|
|
|
|
|
|
+ public void setViewCount(Long viewCount) {
|
|
|
+ this.viewCount = viewCount;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("aircraftTypeId", getAircraftTypeId())
|
|
|
- .append("aircraftSystemId", getAircraftSystemId())
|
|
|
- .append("aircraftSubsystemId", getAircraftSubsystemId())
|
|
|
- .append("faultPhenomenon", getFaultPhenomenon())
|
|
|
- .append("faultCause", getFaultCause())
|
|
|
- .append("faultTreePath", getFaultTreePath())
|
|
|
- .append("faultPicturePath", getFaultPicturePath())
|
|
|
- .append("troubleshootingMethodPath", getTroubleshootingMethodPath())
|
|
|
- .append("viewCount", getViewCount())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .toString();
|
|
|
+ return "FaultCase{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", aircraftTypeId=" + aircraftTypeId +
|
|
|
+ ", aircraftTypeName=" + aircraftTypeName +
|
|
|
+ ", aircraftSystemId=" + aircraftSystemId +
|
|
|
+ ", aircraftSystemName=" + aircraftSystemName +
|
|
|
+ ", aircraftSubsystemId=" + aircraftSubsystemId +
|
|
|
+ ", aircraftSubsystemName=" + aircraftSubsystemName +
|
|
|
+ ", faultPhenomenon='" + faultPhenomenon + '\'' +
|
|
|
+ ", faultCause='" + faultCause + '\'' +
|
|
|
+ ", faultTreePath='" + faultTreePath + '\'' +
|
|
|
+ ", faultPicturePath='" + faultPicturePath + '\'' +
|
|
|
+ ", troubleshootingMethodPath='" + troubleshootingMethodPath + '\'' +
|
|
|
+ ", viewCount=" + viewCount +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|