Browse Source

类别统计dto

master
zhangyuan 5 years ago
parent
commit
9c8387660e
  1. 66
      epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/item/result/CategoryGridDailyResultDTO.java
  2. 71
      epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/item/result/CategoryOrgDailyResultDTO.java

66
epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/item/result/CategoryGridDailyResultDTO.java

@ -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;
/**
* 分类等级12....
*/
private Integer level;
}

71
epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/item/result/CategoryOrgDailyResultDTO.java

@ -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;
/**
* 分类等级12....
*/
private Integer level;
}
Loading…
Cancel
Save