2 changed files with 137 additions and 0 deletions
@ -0,0 +1,66 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* <p> |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* 【事件/项目分析】按类别统计-网格(03-22已确定) |
|||
* |
|||
* @author zhy |
|||
* @date 2021/3/22 16:55 |
|||
*/ |
|||
@Data |
|||
public class CategoryGridDailyResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 类别编码 |
|||
*/ |
|||
private String categoryCode; |
|||
|
|||
/** |
|||
* 项目总数 |
|||
*/ |
|||
private Integer projectTotal; |
|||
|
|||
/** |
|||
* 组织id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 组织所属上级id;如果属于跟组织下直属网格,pid=0 |
|||
*/ |
|||
private String pid; |
|||
|
|||
/** |
|||
* 组织所有父级ids,以英文逗号隔开; pid=0时,pids=0 |
|||
*/ |
|||
private String pids; |
|||
|
|||
/** |
|||
* 分类等级:1、2.... |
|||
*/ |
|||
private Integer level; |
|||
|
|||
} |
|||
@ -0,0 +1,71 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* <p> |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* 【事件/项目分析】按类别统计-组织(03-22已确定) |
|||
* |
|||
* @author zhy |
|||
* @date 2021/3/22 16:56 |
|||
*/ |
|||
@Data |
|||
public class CategoryOrgDailyResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 类别编码 |
|||
*/ |
|||
private String categoryCode; |
|||
|
|||
/** |
|||
* 项目总数 |
|||
*/ |
|||
private Integer projectTotal; |
|||
|
|||
/** |
|||
* 组织id |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 组织所属上级id;如果属于跟组织下直属网格,pid=0 |
|||
*/ |
|||
private String pid; |
|||
|
|||
/** |
|||
* 组织所有父级ids,以英文逗号隔开; pid=0时,pids=0 |
|||
*/ |
|||
private String pids; |
|||
|
|||
/** |
|||
* 社区级:community,乡(镇、街道)级:street |
|||
*/ |
|||
private String orgType; |
|||
|
|||
/** |
|||
* 分类等级:1、2.... |
|||
*/ |
|||
private Integer level; |
|||
|
|||
} |
|||
Loading…
Reference in new issue