From d94c5dbf112a8baf166229fb2fd160e4b48daee9 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 15 Mar 2022 18:01:06 +0800 Subject: [PATCH] add mobile showFreedBed --- zq-erp/src/main/java/com/matrix/system/app/dto/CreateServiceOrderDto.java | 25 ++++++++++++++++++++++++- 1 files changed, 24 insertions(+), 1 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/app/dto/CreateServiceOrderDto.java b/zq-erp/src/main/java/com/matrix/system/app/dto/CreateServiceOrderDto.java index dadc947..6a9b593 100644 --- a/zq-erp/src/main/java/com/matrix/system/app/dto/CreateServiceOrderDto.java +++ b/zq-erp/src/main/java/com/matrix/system/app/dto/CreateServiceOrderDto.java @@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; +import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotNull; import java.util.Date; import java.util.List; @@ -20,9 +21,12 @@ @ApiModelProperty(value = "会员ID") private Long vipId; - @NotNull(message = "请选择美疗师") +// @NotNull(message = "请选择美疗师") @ApiModelProperty(value = "美疗师ID") private Long beautyId; + + @ApiModelProperty(value = "床位ID") + private Long bedId; @NotNull(message = "请选择预约时间") @JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GMT+8") @@ -38,6 +42,25 @@ @ApiModelProperty(value = "备注") private String remark; + @ApiModelProperty(value = "资金密码") + private String password; + + public Long getBedId() { + return bedId; + } + + public void setBedId(Long bedId) { + this.bedId = bedId; + } + + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password; + } + public Long getVipId() { return vipId; } -- Gitblit v1.9.1