|
|
@@ -20,6 +20,15 @@ public class InspectionRoutePointRelDto extends PageDto implements Serializable
|
|
|
private String irpRelId;
|
|
|
private String remark;
|
|
|
private String communityId;
|
|
|
+ private String inspectionName;
|
|
|
+ private String machineCode;
|
|
|
+ private String machineName;
|
|
|
+ private String locationTypeCd;
|
|
|
+ private String locationTypeName;
|
|
|
+ private String locationObjId;
|
|
|
+ private String locationObjName;
|
|
|
+ private String machineId;
|
|
|
+ private String relationship; //1 查询关联的巡检点 0 还未关联巡检点
|
|
|
|
|
|
|
|
|
private Date createTime;
|
|
|
@@ -83,4 +92,76 @@ public class InspectionRoutePointRelDto extends PageDto implements Serializable
|
|
|
public void setStatusCd(String statusCd) {
|
|
|
this.statusCd = statusCd;
|
|
|
}
|
|
|
+
|
|
|
+ public String getInspectionName() {
|
|
|
+ return inspectionName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInspectionName(String inspectionName) {
|
|
|
+ this.inspectionName = inspectionName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMachineCode() {
|
|
|
+ return machineCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMachineCode(String machineCode) {
|
|
|
+ this.machineCode = machineCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMachineName() {
|
|
|
+ return machineName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMachineName(String machineName) {
|
|
|
+ this.machineName = machineName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLocationTypeCd() {
|
|
|
+ return locationTypeCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationTypeCd(String locationTypeCd) {
|
|
|
+ this.locationTypeCd = locationTypeCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLocationTypeName() {
|
|
|
+ return locationTypeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationTypeName(String locationTypeName) {
|
|
|
+ this.locationTypeName = locationTypeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLocationObjId() {
|
|
|
+ return locationObjId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationObjId(String locationObjId) {
|
|
|
+ this.locationObjId = locationObjId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLocationObjName() {
|
|
|
+ return locationObjName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationObjName(String locationObjName) {
|
|
|
+ this.locationObjName = locationObjName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMachineId() {
|
|
|
+ return machineId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMachineId(String machineId) {
|
|
|
+ this.machineId = machineId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationship() {
|
|
|
+ return relationship;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationship(String relationship) {
|
|
|
+ this.relationship = relationship;
|
|
|
+ }
|
|
|
}
|