From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能
---
java110-bean/src/main/java/com/java110/dto/repair/RepairDto.java | 72 +++++++++++++++++++++++++++++++++++-
1 files changed, 70 insertions(+), 2 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/repair/RepairDto.java b/java110-bean/src/main/java/com/java110/dto/repair/RepairDto.java
index ed50463..e79c849 100755
--- a/java110-bean/src/main/java/com/java110/dto/repair/RepairDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/repair/RepairDto.java
@@ -37,6 +37,8 @@
public static final String STATE_COMPLATE = "1900";
//鏈鐞嗕富鍔ㄧ粨鍗�
public static final String STATE_UNPROCESSED = "2000";
+ //鏆傚仠鎶ヤ慨鍗�
+ public static final String STATE_STOP = "2001";
public static final String REPAIR_WAY_GRABBING = "100"; //鎶㈠崟妯″紡
public static final String REPAIR_WAY_ASSIGN = "200"; //鎸囨淳妯″紡
@@ -95,6 +97,7 @@
private String visitType;
private String visitContext;
private List<String> repairChannels;
+ private String payType;
//涓氫富涓婁紶缁翠慨鍥剧墖
private List<PhotoVo> repairPhotos;
@@ -108,6 +111,17 @@
//璐圭敤鏄庣粏
private String repairFee;
+
+ //缁煎悎璇勪环寰楀垎
+ private String appraiseScore;
+ //涓婇棬閫熷害璇勫垎
+ private String doorSpeedScore;
+ //缁翠慨鍛樻湇鍔¤瘎鍒�
+ private String repairmanServiceScore;
+ //骞冲潎鍒�
+ private String average;
+ private String repairSettingType;
+ private String repairSettingTypeName;
public String getRepairName() {
return repairName;
@@ -213,7 +227,6 @@
public void setRepairTypeName(String repairTypeName) {
this.repairTypeName = repairTypeName;
}
-
public String getStaffId() {
return staffId;
@@ -423,7 +436,6 @@
this.maintenanceType = maintenanceType;
}
-
public String getReqSource() {
return reqSource;
}
@@ -471,4 +483,60 @@
public void setRepairFee(String repairFee) {
this.repairFee = repairFee;
}
+
+ public String getAppraiseScore() {
+ return appraiseScore;
+ }
+
+ public void setAppraiseScore(String appraiseScore) {
+ this.appraiseScore = appraiseScore;
+ }
+
+ public String getDoorSpeedScore() {
+ return doorSpeedScore;
+ }
+
+ public void setDoorSpeedScore(String doorSpeedScore) {
+ this.doorSpeedScore = doorSpeedScore;
+ }
+
+ public String getRepairmanServiceScore() {
+ return repairmanServiceScore;
+ }
+
+ public void setRepairmanServiceScore(String repairmanServiceScore) {
+ this.repairmanServiceScore = repairmanServiceScore;
+ }
+
+ public String getAverage() {
+ return average;
+ }
+
+ public void setAverage(String average) {
+ this.average = average;
+ }
+
+ public String getPayType() {
+ return payType;
+ }
+
+ public void setPayType(String payType) {
+ this.payType = payType;
+ }
+
+ public String getRepairSettingType() {
+ return repairSettingType;
+ }
+
+ public void setRepairSettingType(String repairSettingType) {
+ this.repairSettingType = repairSettingType;
+ }
+
+ public String getRepairSettingTypeName() {
+ return repairSettingTypeName;
+ }
+
+ public void setRepairSettingTypeName(String repairSettingTypeName) {
+ this.repairSettingTypeName = repairSettingTypeName;
+ }
}
--
Gitblit v1.8.0