Browse Source
# Conflicts: # epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/controller/DemoController.java # epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/dao/org/StatsCustomerAgencyDao.java # epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/org/CustomerAgencyService.java # epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/org/impl/CustomerAgencyServiceImpl.java # epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/org/StatsCustomerAgencyDao.xmlmaster
14 changed files with 192 additions and 8 deletions
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.org.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 返回每个网格、每个组织下,工作人员的userId |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/6/3 9:49 |
|||
*/ |
|||
@Data |
|||
public class OrgStaffDTO implements Serializable { |
|||
|
|||
/** |
|||
* 组织id或者网格id |
|||
*/ |
|||
private String orgId; |
|||
/** |
|||
* agency or grid |
|||
*/ |
|||
private String orgType; |
|||
/** |
|||
* 当前组织或者当前网格下的: |
|||
*/ |
|||
private List<String> staffIds; |
|||
} |
@ -0,0 +1,4 @@ |
|||
-- 为了平阴大屏,显示网格员数,screen_user_total_data 新增GRID_MEMBER_TOTAL |
|||
|
|||
-- epmet_evaluation_index 、 epmet_data_statistical_display 库执行以下: |
|||
ALTER TABLE screen_user_total_data ADD COLUMN `GRID_MEMBER_TOTAL` INT ( 11 ) NOT NULL DEFAULT '0' COMMENT '06.01新增:orgType=agency或者grid的时候,此列赋值:当前组织或者当前网格内的网格员人数' AFTER PROJECT_TOTAL; |
Loading…
Reference in new issue