| | |
| | | package com.ruoyi.approve.utils; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | public class StartAndEndDateDto { |
| | | |
| | | @ApiModelProperty("开始时间") |
| | | @TableField(exist = false) |
| | | private String startDate; |
| | | |
| | | @ApiModelProperty("结束时间") |
| | | @TableField(exist = false) |
| | | private String endDate; |
| | | |
| | | @ApiModelProperty("开始月份") |
| | | @TableField(exist = false) |
| | | private Integer startMonth; |
| | | |
| | | @ApiModelProperty("结束月份") |
| | | @TableField(exist = false) |
| | | private Integer endMonth; |
| | | |
| | | @ApiModelProperty("年份") |
| | | @TableField(exist = false) |
| | | private Integer year; |
| | | |
| | | |
| | | } |