Helius
2021-01-12 2bc39e9183e62818dcfbb3cdfc6cdca5dfa43923
zq-erp/src/main/java/com/matrix/system/app/dto/ServiceOrderListDto.java
@@ -19,6 +19,17 @@
    @ApiModelProperty(hidden = true)
    private Long shopId;
    @ApiModelProperty(hidden = true)
    private Long userId;
    public Long getUserId() {
        return userId;
    }
    public void setUserId(Long userId) {
        this.userId = userId;
    }
    public Long getShopId() {
        return shopId;
    }
@@ -48,16 +59,16 @@
                this.status = "待预约";
                break;
            case "2" :
                this.status = "带配料";
                this.status = "需配料";
                break;
            case "3" :
                this.status = "待服务";
                this.status = "配料完成";
                break;
            case "4" :
                this.status = "服务中";
                break;
            case "5" :
                this.status = "已完成";
                this.status = "服务完成";
                break;
            default:
                this.status = "";