forked from rongchao/epmet-cloud-rizhao
11 changed files with 84 additions and 31 deletions
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/1/21 1:43 下午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class CategoryCountListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1563081091285509142L; |
|||
|
|||
private List<String> configList; |
|||
|
|||
private String orgId; |
|||
} |
@ -0,0 +1,20 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/1/21 1:44 下午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class CategoryCountListResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -8441192101441016588L; |
|||
|
|||
private String configId; |
|||
|
|||
private Integer count; |
|||
} |
Loading…
Reference in new issue