puzhibing
2023-12-13 1772afb069b75871572c9c438bbd2bc403f864df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName MgtBaseDateDto
 * @Description TODO
 * @Author jqs
 * @Date 2023/6/19 15:04
 * @Version 1.0
 */
@Data
public class MgtBaseDateDto extends MgtBaseDto{
 
    @ApiModelProperty(value = "开始日期")
    private String startDate;
 
    @ApiModelProperty(value = "结束日期")
    private String endDate;
}