package com.mzl.flower.dto.request.report; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import javax.validation.constraints.NotNull; import java.time.LocalDate; import java.time.LocalDateTime; @Data public class QueryOrderDTO { @ApiModelProperty(value = "开始时间") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @NotNull(message = "开始时间不能为空") private LocalDateTime startDate; @ApiModelProperty(value = "结束时间") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @NotNull(message = "结束时间不能为空") private LocalDateTime endDate; @ApiModelProperty(value = "合伙人id") private Long partnerId; @ApiModelProperty(value = "下单日期") @JsonFormat(pattern="yyyy-MM-dd" ,timezone="GMT+8") @DateTimeFormat(pattern="yyyy-MM-dd") // @NotNull(message = "下单日期不能为空") private LocalDate calDate; @ApiModelProperty(value = "是否是合伙人,默认0") private Integer partnerFlag; }