2 changed files with 33 additions and 0 deletions
@ -0,0 +1,32 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author yan Lu |
|||
* @description 各新村或网格事件处理数量和办结率 |
|||
* @create 2023/5/19 09:16 |
|||
*/ |
|||
|
|||
@Data |
|||
public class GridOrVillageEventRateResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格名称或者社区(新村)名称 |
|||
*/ |
|||
private String agencyName; |
|||
|
|||
/** |
|||
* 完结事件数量 |
|||
*/ |
|||
private String total; |
|||
|
|||
/** |
|||
* 事件完结率 |
|||
*/ |
|||
private String rate; |
|||
} |
Loading…
Reference in new issue