8 changed files with 207 additions and 12 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.epmet.dataaggre.dto.epmettduck.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 表头 |
||||
|
* @Author yinzuomei |
||||
|
* @Date 2021/9/22 3:41 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ConcatTableHeaderDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -1133629000511948034L; |
||||
|
|
||||
|
/** |
||||
|
* 显示名称 |
||||
|
*/ |
||||
|
private String label; |
||||
|
/** |
||||
|
* 表单项Id |
||||
|
*/ |
||||
|
private String formItemId; |
||||
|
|
||||
|
private String type; |
||||
|
} |
||||
|
|
@ -0,0 +1,25 @@ |
|||||
|
package com.epmet.dataaggre.dto.epmettduck.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description TODO |
||||
|
* @Author yinzuomei |
||||
|
* @Date 2021/9/22 2:54 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ItemResDetailConcatResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -3695200094740706700L; |
||||
|
private List<ConcatTableHeaderDTO> tableHeaderList; |
||||
|
private List<List<String>> dataList; |
||||
|
|
||||
|
public ItemResDetailConcatResultDTO(){ |
||||
|
this.tableHeaderList=new ArrayList<>(); |
||||
|
this.dataList=new ArrayList<>(); |
||||
|
} |
||||
|
} |
||||
|
|
Loading…
Reference in new issue