Browse Source

message:

修改参数
dev_power_axis
HAHA 3 years ago
parent
commit
68b6eb582e
  1. 4
      epmet-plugins-module/pli-power-base/pli-power-base-server/src/main/java/com/epmet/plugin/power/modules/axis/dao/PowerAxisStructDao.java
  2. 4
      epmet-plugins-module/pli-power-base/pli-power-base-server/src/main/java/com/epmet/plugin/power/modules/axis/service/impl/PowerAxisStructServiceImpl.java

4
epmet-plugins-module/pli-power-base/pli-power-base-server/src/main/java/com/epmet/plugin/power/modules/axis/dao/PowerAxisStructDao.java

@ -75,9 +75,9 @@ public interface PowerAxisStructDao extends BaseDao<PowerAxisStructEntity> {
List<String> getIdsByAgencyId(String agencyId, String customerId); List<String> getIdsByAgencyId(String agencyId, String customerId);
int queryGridParty(PowerAxisStructViewFormDTO form,String gridCateGoryCode); int queryGridParty(String agencyId,String customerId,String gridCateGoryCode);
int queryGroupParty(PowerAxisStructViewFormDTO form,String groupCateGoryCode); int queryGroupParty(String agencyId,String customerId,String groupCateGoryCode);
int getKernelHouseHold(PowerAxisStructViewFormDTO form); int getKernelHouseHold(PowerAxisStructViewFormDTO form);

4
epmet-plugins-module/pli-power-base/pli-power-base-server/src/main/java/com/epmet/plugin/power/modules/axis/service/impl/PowerAxisStructServiceImpl.java

@ -231,11 +231,11 @@ public class PowerAxisStructServiceImpl extends BaseServiceImpl<PowerAxisStructD
// 查网格党支部数 grid_party // 查网格党支部数 grid_party
String gridCateGoryCode = baseDao.getCateGoryCode(form.getCustomerId(),PowerTagLevelEnum.CHILD_FIRST.level(),PowerTagCategoryEnum.STRUCT.category()); String gridCateGoryCode = baseDao.getCateGoryCode(form.getCustomerId(),PowerTagLevelEnum.CHILD_FIRST.level(),PowerTagCategoryEnum.STRUCT.category());
int gridParty = baseDao.queryGridParty(form,gridCateGoryCode); int gridParty = baseDao.queryGridParty(form.getAgencyId(),form.getCustomerId(),gridCateGoryCode);
// 查楼院党小组数 group_party // 查楼院党小组数 group_party
String groupCateGoryCode = baseDao.getCateGoryCode(form.getCustomerId(),PowerTagLevelEnum.CHILD_SECOND.level(),PowerTagCategoryEnum.STRUCT.category()); String groupCateGoryCode = baseDao.getCateGoryCode(form.getCustomerId(),PowerTagLevelEnum.CHILD_SECOND.level(),PowerTagCategoryEnum.STRUCT.category());
int groupParty = baseDao.queryGroupParty(form,groupCateGoryCode); int groupParty = baseDao.queryGroupParty(form.getAgencyId(),form.getCustomerId(),groupCateGoryCode);
// 查询党员数 // 查询党员数
int partyNum = 0; int partyNum = 0;
// 查询党员中心户数 // 查询党员中心户数

Loading…
Cancel
Save