1 changed files with 31 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||
package com.elink.esua.epdc.dto.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 【事件/项目分析】按类别统计 |
|||
* |
|||
* @author zhy |
|||
* @date 2021/3/23 10:37 |
|||
*/ |
|||
@Data |
|||
public class ScreenCategoryDateDTO implements Serializable { |
|||
private static final long serialVersionUID = 8161588041384645877L; |
|||
|
|||
/** |
|||
* 当为true时后台将先删除当前维度的数据,后新增 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* 日期Id, 数据更新至:yyyyMMdd |
|||
*/ |
|||
private String dateId; |
|||
|
|||
/** |
|||
* 上报数据 |
|||
*/ |
|||
private Object dataList; |
|||
} |
Loading…
Reference in new issue