2 changed files with 43 additions and 0 deletions
@ -0,0 +1,33 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* @author: qushutong |
|||
* @Date: 2022/2/23 16:58 |
|||
* @Description: 项目总数数据推送 |
|||
*/ |
|||
@Data |
|||
public class ItemCountParamDTO implements Serializable { |
|||
private static final long serialVersionUID = 1132628937660635407L; |
|||
|
|||
/** |
|||
* 截止时间 |
|||
*/ |
|||
private String endTime; |
|||
|
|||
/** |
|||
* 客户id |
|||
*/ |
|||
private String customId; |
|||
|
|||
/** |
|||
* 开始时间 |
|||
*/ |
|||
private String startTime; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue