package com.ruoyi.account.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDate;
|
import java.util.Date;
|
|
/**
|
* @author :yys
|
* @date : 2026/1/16 16:57
|
*/
|
@Data
|
public class ReportDateDto {
|
|
/**
|
* 开始时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private LocalDate entryDateStart;
|
|
/**
|
* 结束时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private LocalDate entryDateEnd;
|
|
/**
|
* 开始月份
|
*/
|
private Integer startMonth;
|
|
/**
|
* 结束月份
|
*/
|
private Integer endMonth;
|
|
}
|