7 changed files with 135 additions and 4 deletions
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dataaggre.dto.epmettduck.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description projectKey通用 |
||||
|
* @Author yinzuomei |
||||
|
* @Date 2021/9/16 1:32 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectKeyCommonDTO implements Serializable { |
||||
|
|
||||
|
/** |
||||
|
* 问卷id, 对应pr_user_project.key |
||||
|
*/ |
||||
|
private String projectKey; |
||||
|
} |
||||
|
|
@ -0,0 +1,39 @@ |
|||||
|
package com.epmet.dataaggre.dto.epmettduck.result; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @Description 统计图标,上面的一行 |
||||
|
* @Author yinzuomei |
||||
|
* @Date 2021/9/16 2:10 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectProfileResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -6087175682515652086L; |
||||
|
|
||||
|
/** |
||||
|
* 问卷id, 对应pr_user_project.key |
||||
|
*/ |
||||
|
private String projectKey; |
||||
|
|
||||
|
/** |
||||
|
* 采集数量 |
||||
|
*/ |
||||
|
private Integer collectionTotal; |
||||
|
|
||||
|
//CREATE(1, "未发布"),
|
||||
|
//RELEASE(2, "收集中"),
|
||||
|
//STOP(3, "停止发布");
|
||||
|
private Integer status; |
||||
|
|
||||
|
/** |
||||
|
* 采集数量 |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date createTime; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue