Browse Source

社会自组织、联建单位列表增加返参

master
sunyuchao 3 years ago
parent
commit
9c71c97798
  1. 16
      epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/CommunitySelfOrganizationListDTO.java
  2. 5
      epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/IcCommunitySelfOrganizationDao.xml

16
epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/CommunitySelfOrganizationListDTO.java

@ -100,6 +100,22 @@ public class CommunitySelfOrganizationListDTO implements Serializable {
* 积分 * 积分
*/ */
private Integer score; private Integer score;
/**
* 同步状态已同步:sync 未同步:not_sync
*/
private String syncType;
/**
* 部门ID customer_department.id
*/
private String deptId;
/**
* 部门下工作人员Id
*/
private String deptStaffId;
/** /**
* 社区自组织人员 * 社区自组织人员
*/ */

5
epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/IcCommunitySelfOrganizationDao.xml

@ -63,7 +63,10 @@
so.LATITUDE AS latitude, so.LATITUDE AS latitude,
so.ADDRESS as address, so.ADDRESS as address,
so.ID as orgId, so.ID as orgId,
so.remark so.remark,
so.sync_type AS syncType,
so.dept_id AS deptId,
so.dept_staff_id AS deptStaffId
FROM ic_community_self_organization so FROM ic_community_self_organization so
WHERE so.DEL_FLAG = 0 WHERE so.DEL_FLAG = 0
<if test="null != agencyId and agencyId != '' "> <if test="null != agencyId and agencyId != '' ">

Loading…
Cancel
Save