Browse Source

字段补充

dev_shibei_match
sunyuchao 4 years ago
parent
commit
59ada443c6
  1. 2
      epmet-module/data-aggregator/data-aggregator-client/src/main/java/com/epmet/dataaggre/dto/epmetuser/result/ListStaffResultDTO.java
  2. 1
      epmet-module/data-aggregator/data-aggregator-server/src/main/resources/mapper/epmetuser/CustomerStaffDao.xml

2
epmet-module/data-aggregator/data-aggregator-client/src/main/java/com/epmet/dataaggre/dto/epmetuser/result/ListStaffResultDTO.java

@ -23,6 +23,8 @@ public class ListStaffResultDTO implements Serializable {
private String headPhoto = ""; private String headPhoto = "";
//手机号 //手机号
private String mobile = ""; private String mobile = "";
//未禁用enable,已禁用disabled
private String enableFlag = "";
//人员新增所属组织名【组织-组织,组织-部门,组织-网格】 //人员新增所属组织名【组织-组织,组织-部门,组织-网格】
private String orgName = ""; private String orgName = "";
//职责名称列表 //职责名称列表

1
epmet-module/data-aggregator/data-aggregator-server/src/main/resources/mapper/epmetuser/CustomerStaffDao.xml

@ -37,6 +37,7 @@
<result property="gender" column="gender"/> <result property="gender" column="gender"/>
<result property="headPhoto" column="head_photo"/> <result property="headPhoto" column="head_photo"/>
<result property="mobile" column="mobile"/> <result property="mobile" column="mobile"/>
<result property="enableFlag" column="enable_flag"/>
<association property="roles" column="user_id" select="com.epmet.dataaggre.dao.epmetuser.StaffRoleDao.selectByStaffId"/> <association property="roles" column="user_id" select="com.epmet.dataaggre.dao.epmetuser.StaffRoleDao.selectByStaffId"/>
</resultMap> </resultMap>
<select id="selectByRealName" resultMap="staffList"> <select id="selectByRealName" resultMap="staffList">

Loading…
Cancel
Save