| | |
| | | package com.ruoyi.approve.utils; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | * @date : 2023/9/19 10:58 |
| | | */ |
| | | @Data |
| | | @ApiModel |
| | | @Schema |
| | | public class StartAndEndDateDto { |
| | | |
| | | @ApiModelProperty("开始时间") |
| | | @Schema(description = "开始时间") |
| | | @TableField(exist = false) |
| | | private String startDate; |
| | | |
| | | @ApiModelProperty("结束时间") |
| | | @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; |
| | | |
| | | |
| | | } |