Commit 31d7fbcf by 陶光胜

加日志

parent 633dd1a8
......@@ -21,6 +21,8 @@ public class QywxCallBackDTO implements Serializable{
private String[] department;
private String newUserid;
private String mobile;
private String position;
private Integer id;
private String departmentName;
private Integer parentId;
......@@ -172,4 +174,12 @@ public class QywxCallBackDTO implements Serializable{
public void setAlias(String alias) {
this.alias = alias;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
}
......@@ -165,6 +165,7 @@ public class MessageApiServiceImpl implements MessageApiService {
staff.setSex(qywxCallBackDTO.getGender());
staff.setStaffName(qywxCallBackDTO.getUserName());
staff.setWxUserId(qywxCallBackDTO.getUserid());
staff.setPostion(qywxCallBackDTO.getPosition());
if(qywxCallBackDTO.getChangeType().equals(WxEditType.ADDUSER.getCode())){
this.addUser(qywxCallBackDTO, staff);
} else if(qywxCallBackDTO.getChangeType().equals(WxEditType.UPDATEUSER.getCode())){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment