8 changed files with 161 additions and 8 deletions
@ -0,0 +1,26 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/12/9 9:53 上午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class ResiBuzzLeftPieChartFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -7312573663758331220L; |
|||
|
|||
/** |
|||
* 组织ID |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 组织类型,agency:组织,grid:网格 |
|||
*/ |
|||
private String orgType; |
|||
} |
@ -0,0 +1,36 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/12/9 9:56 上午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class ResiBuzzLeftPieChartResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -4673540577019002156L; |
|||
|
|||
/** |
|||
* 数量 |
|||
*/ |
|||
private Integer count; |
|||
|
|||
/** |
|||
* 分类编码 |
|||
*/ |
|||
private String categoryCode; |
|||
|
|||
/** |
|||
* 分类名字 |
|||
*/ |
|||
private String categoryName; |
|||
|
|||
/** |
|||
* 颜色 |
|||
*/ |
|||
private String colour; |
|||
} |
Loading…
Reference in new issue