forked from luyan/epmet-cloud-lingshan
9 changed files with 142 additions and 5 deletions
@ -0,0 +1,31 @@ |
|||||
|
package com.epmet.commons.feignclient.dtos.form; |
||||
|
|
||||
|
import lombok.AllArgsConstructor; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/8 15:08 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
@NoArgsConstructor |
||||
|
@AllArgsConstructor |
||||
|
public class JiMuReportFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3590609549416867701L; |
||||
|
|
||||
|
/** |
||||
|
* 报表IDs |
||||
|
*/ |
||||
|
private List<String> reportIds; |
||||
|
|
||||
|
/** |
||||
|
* 类别 |
||||
|
*/ |
||||
|
private List<String> categoryKeys; |
||||
|
} |
@ -0,0 +1,22 @@ |
|||||
|
package com.epmet.commons.feignclient.dtos.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/8 15:10 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class JiMuReportResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -4048477731892329569L; |
||||
|
|
||||
|
private String code; |
||||
|
|
||||
|
private String name; |
||||
|
|
||||
|
private String id; |
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/8 15:16 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ReportListFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -4459838228433571457L; |
||||
|
|
||||
|
private List<String> categoryKeys; |
||||
|
} |
Loading…
Reference in new issue