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 java.time.LocalDate;
|
|
@Data
|
public class QueryOrderDTO {
|
|
@ApiModelProperty(value = "开始时间")
|
@JsonFormat(pattern="yyyy-MM-dd" ,timezone="GMT+8")
|
@DateTimeFormat
|
private LocalDate startDate;
|
|
@ApiModelProperty(value = "结束时间")
|
@JsonFormat(pattern="yyyy-MM-dd" ,timezone="GMT+8")
|
@DateTimeFormat
|
private LocalDate endDate;
|
|
@ApiModelProperty(value = "合伙人id")
|
private Long partnerId;
|
}
|