package com.nova.sankuai.domain.dto; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; /** * @author weikangdi * @create 2021/11/15 */ @ApiModel(value = "欢迎页分页查询条件") @Data public class WelcomePageDto { @ApiModelProperty(value = "开始日期") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date startDate; @ApiModelProperty(value = "结束日期") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date endDate; }