forked from luyan/epmet-cloud-lingshan
6 changed files with 153 additions and 1 deletions
@ -0,0 +1,84 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonIgnore; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/8/8 10:29 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class ReportResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -5798816843431200300L; |
|||
|
|||
/** |
|||
* 报表名字 |
|||
*/ |
|||
private String reportName; |
|||
|
|||
/** |
|||
* 报表ID |
|||
*/ |
|||
private String reportId; |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
@JsonIgnore |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 客户名字 |
|||
*/ |
|||
@JsonIgnore |
|||
private String customerName; |
|||
|
|||
/** |
|||
* 分类名字 |
|||
*/ |
|||
@JsonIgnore |
|||
private String categoryName; |
|||
|
|||
/** |
|||
* 分类key |
|||
*/ |
|||
@JsonIgnore |
|||
private String categoryKey; |
|||
|
|||
/** |
|||
* 客户信息集合 |
|||
*/ |
|||
private List<CustomerList> customerList; |
|||
|
|||
|
|||
@Data |
|||
static class CustomerList implements Serializable{ |
|||
|
|||
private static final long serialVersionUID = 7146198312265513418L; |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 客户名字 |
|||
*/ |
|||
private String customerName; |
|||
|
|||
/** |
|||
* 分类名字 |
|||
*/ |
|||
private String categoryName; |
|||
|
|||
/** |
|||
* 分类key |
|||
*/ |
|||
private String categoryKey; |
|||
} |
|||
} |
Loading…
Reference in new issue