Commit 927c400b by xugaojun

[鸿星尔克定制开发]:方法启用、增加回调参数

parent 1573997a
...@@ -17,8 +17,14 @@ public class QywxCallBackDTO implements Serializable{ ...@@ -17,8 +17,14 @@ public class QywxCallBackDTO implements Serializable{
/**1男 2女***/ /**1男 2女***/
private Integer gender; private Integer gender;
private String alias; private String alias;
private String mainDepartment;
/**
* 是否是所在部门负责人 1 是 0 否 例 1,0,0
*/
private Integer[] isLeaderInDept;
private String[] department; private String[] department;
private String newUserid; private String newUserid;
private String telephone;
private String mobile; private String mobile;
private String position; private String position;
private Integer status; //激活状态:1=激活或关注, 2=禁用, 4=未激活 private Integer status; //激活状态:1=激活或关注, 2=禁用, 4=未激活
...@@ -200,6 +206,27 @@ public class QywxCallBackDTO implements Serializable{ ...@@ -200,6 +206,27 @@ public class QywxCallBackDTO implements Serializable{
this.status = status; this.status = status;
} }
public String getMainDepartment() {
return mainDepartment;
}
public void setMainDepartment(String mainDepartment) {
this.mainDepartment = mainDepartment;
}
public Integer[] getIsLeaderInDept() {
return isLeaderInDept;
}
public void setIsLeaderInDept(Integer[] isLeaderInDept) {
this.isLeaderInDept = isLeaderInDept;
}
public String getTelephone() {
return telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
} }
...@@ -20,14 +20,12 @@ public interface MessageApiService { ...@@ -20,14 +20,12 @@ public interface MessageApiService {
* *
* @param qywxCallBackDTO * @param qywxCallBackDTO
*/ */
@Deprecated
void wxMessageReceive(QywxCallBackDTO qywxCallBackDTO); void wxMessageReceive(QywxCallBackDTO qywxCallBackDTO);
/** /**
* 队列消费企业微信推送数据 * 队列消费企业微信推送数据
* @param param * @param param
*/ */
@Deprecated
void dealWxMessage(String param); void dealWxMessage(String param);
/** /**
* 发送消费消息 * 发送消费消息
......
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