111
k94314517
2023-09-05 85e514c685f2862cfe641b3eadb4412a09af2062
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 doumeemes.dao.ext.dto;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import cn.afterturn.easypoi.excel.annotation.ExcelTarget;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author T14
 */
@Data
@ApiModel("工作台活跃趋势图查询类")
public class ActivityLoginDTO {
 
    @ApiModelProperty(value = "来源  0pc 1钉钉 2羚羊平台 3EDGP平台")
    private Integer orgin;
 
    @ApiModelProperty(value = "开始日期")
    private String startDate;
 
    @ApiModelProperty(value = "结束日期")
    private String endDate;
}