|  |  |  | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModel(value = "BeauticianDto", description = "获取美疗师列表接收参数类") | 
|---|
|  |  |  | public class BeauticianDto { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @NotNull(message = "开始时间不能为空") | 
|---|
|  |  |  | @JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GMT+8") | 
|---|
|  |  |  | @ApiModelProperty(value = "开始时间") | 
|---|
|  |  |  | private Date startTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @NotNull(message = "结束时间不能为空") | 
|---|
|  |  |  | @JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GMT+8") | 
|---|
|  |  |  | @ApiModelProperty(value = "结束时间") | 
|---|
|  |  |  | private Date endTime; | 
|---|
|  |  |  |  | 
|---|