| 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; | 
| } |