wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
java110-bean/src/main/java/com/java110/dto/repair/RepairDto.java
old mode 100644 new mode 100755
@@ -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;
    }
}