|  |  |  | 
|---|
|  |  |  | package com.matrix.system.app.dto; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import com.matrix.core.tools.DateUtil; | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  | 
|---|
|  |  |  | private Long beautyId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @NotNull(message = "请选择预约时间") | 
|---|
|  |  |  | @JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GMT+8") | 
|---|
|  |  |  | @ApiModelProperty(value = "预约时间") | 
|---|
|  |  |  | private Date yyTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "选择的项目") | 
|---|
|  |  |  | private List<CreateServiceOrderItemDto> projItems; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "总时长") | 
|---|
|  |  |  | private Integer totalTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "备注") | 
|---|
|  |  |  | private String remark; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "资金密码") | 
|---|
|  |  |  | private String password; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getPassword() { | 
|---|
|  |  |  | return password; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setPassword(String password) { | 
|---|
|  |  |  | this.password = password; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Long getVipId() { | 
|---|
|  |  |  | return vipId; | 
|---|
|  |  |  | 
|---|
|  |  |  | public void setRemark(String remark) { | 
|---|
|  |  |  | this.remark = remark; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Integer getTotalTime() { | 
|---|
|  |  |  | return totalTime; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setTotalTime(Integer totalTime) { | 
|---|
|  |  |  | this.totalTime = totalTime; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|