Browse Source

支部管理v3:党支部列表添加总人数返参

dev_shibei_match
yinzuomei 5 years ago
parent
commit
798de2a7ef
  1. 5
      epmet-module/gov-grid/gov-grid-client/src/main/java/com/epmet/dto/result/PartyBranchListResultDTO.java
  2. 5
      epmet-module/gov-org/gov-org-client/src/main/java/com/epmet/dto/result/ListPartyBranchResultDTO.java
  3. 3
      epmet-module/gov-org/gov-org-server/src/main/resources/mapper/CustomerPartyBranchDao.xml

5
epmet-module/gov-grid/gov-grid-client/src/main/java/com/epmet/dto/result/PartyBranchListResultDTO.java

@ -21,4 +21,9 @@ public class PartyBranchListResultDTO implements Serializable {
* 支部名称
*/
private String partyBranchName;
/**
* 党员总数
*/
private Integer totalPartyMember;
}

5
epmet-module/gov-org/gov-org-client/src/main/java/com/epmet/dto/result/ListPartyBranchResultDTO.java

@ -21,4 +21,9 @@ public class ListPartyBranchResultDTO implements Serializable {
* 支部名称
*/
private String partyBranchName;
/**
* 党员总数
*/
private Integer totalPartyMember;
}

3
epmet-module/gov-org/gov-org-server/src/main/resources/mapper/CustomerPartyBranchDao.xml

@ -23,7 +23,8 @@
resultType="com.epmet.dto.result.ListPartyBranchResultDTO">
SELECT
id as partyBranchId,
PARTY_BRANCH_NAME as partyBranchName
PARTY_BRANCH_NAME as partyBranchName,
TOTAL_PARTY_MEMBER AS totalPartyMember
FROM
customer_party_branch
WHERE

Loading…
Cancel
Save