|
|
|
@ -1,11 +1,12 @@
|
|
|
|
|
package com.luoo.user.dto.artist;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.time.LocalDate;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Author: yawei.huang
|
|
|
|
@ -31,8 +32,12 @@ public class ArtistSearchDto implements Serializable {
|
|
|
|
|
private String style;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "申请开始时间")
|
|
|
|
|
private LocalDateTime startTime;
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
|
|
private LocalDate startTime;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "申请结束时间")
|
|
|
|
|
private LocalDateTime endTime;
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
|
|
private LocalDate endTime;
|
|
|
|
|
}
|
|
|
|
|