From 79281ebb9bcc2cd6501a76a5f65b16e7d6edc631 Mon Sep 17 00:00:00 2001 From: wzy <wzy19931122ai@163.com> Date: Thu, 14 Jan 2021 23:26:22 +0800 Subject: [PATCH] modify --- zq-erp/src/main/java/com/matrix/system/app/dto/ServiceOrderListDto.java | 28 +++++++++++++++++++++------- 1 files changed, 21 insertions(+), 7 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/app/dto/ServiceOrderListDto.java b/zq-erp/src/main/java/com/matrix/system/app/dto/ServiceOrderListDto.java index 3fb885a..4a405f6 100644 --- a/zq-erp/src/main/java/com/matrix/system/app/dto/ServiceOrderListDto.java +++ b/zq-erp/src/main/java/com/matrix/system/app/dto/ServiceOrderListDto.java @@ -13,11 +13,22 @@ @ApiModelProperty(value = "查询参数") private String queryKey; - @ApiModelProperty(value = "状态 0/全部 1/带预约 2/带配料 3/待服务 4/服务中 5/已完成") + @ApiModelProperty(value = "状态 0/全部 1/待确认 2/待排班 3/待配料 4/待服务 5/服务中 6/已完成") private String status; @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; @@ -45,19 +56,22 @@ this.status = ""; break; case "1": + this.status = "待确认"; + break; + case "2": this.status = "待预约"; break; - case "2" : - this.status = "带配料"; - break; case "3" : - this.status = "待服务"; + this.status = "需配料"; break; case "4" : - this.status = "服务中"; + this.status = "配料完成"; break; case "5" : - this.status = "已完成"; + this.status = "服务中"; + break; + case "6" : + this.status = "服务完成"; break; default: this.status = ""; -- Gitblit v1.9.1