maven
昨天 6042800e38670760c259e9e3f3459f9f8172e8db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author :yys
 * @date : 2025/7/23 11:31
 */
@Data
@ApiModel
public class DateQueryDto {
 
    @ApiModelProperty(value = "开始时间")
    @TableField(exist = false)
    private String entryDateStart;
 
    @ApiModelProperty(value = "结束时间")
    @TableField(exist = false)
    private String entryDateEnd;
 
}