
cn.zkdcloud.component.message.AbstractResponseMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weChat Show documentation
Show all versions of weChat Show documentation
we can use it easy to build weChat
The newest version!
package cn.zkdcloud.component.message;
/**
* 回复消息
*/
public abstract class AbstractResponseMessage extends Message {
public AbstractResponseMessage() {
this.createTime = System.currentTimeMillis();
}
public AbstractResponseMessage(String toUserName, String fromUserName) {
this.toUserName = toUserName;
this.fromUserName = fromUserName;
this.createTime = System.currentTimeMillis();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy