com.github.sd4324530.fastweixin.message.req.BaseEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastweixin Show documentation
Show all versions of fastweixin Show documentation
quickly department weixin server
package com.github.sd4324530.fastweixin.message.req;
public class BaseEvent extends BaseReq {
private String event;
public BaseEvent() {
setMsgType(ReqType.EVENT);
}
public String getEvent() {
return event;
}
public void setEvent(String event) {
this.event = event;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy