package com.ruoyi.approve.utils;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
/**
|
* @author :yys
|
* @date : 2023/9/19 10:58
|
*/
|
@Data
|
@Schema
|
public class StartAndEndDateDto {
|
|
@Schema(description = "开始时间")
|
@TableField(exist = false)
|
private String startDate;
|
|
@Schema(description = "结束时间")
|
@TableField(exist = false)
|
private String endDate;
|
|
@Schema(description = "开始月份")
|
@TableField(exist = false)
|
private Integer startMonth;
|
|
@Schema(description = "结束月份")
|
@TableField(exist = false)
|
private Integer endMonth;
|
|
@Schema(description = "年份")
|
@TableField(exist = false)
|
private Integer year;
|
|
|
}
|