All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.zkdcloud.component.message.AbstractResponseMessage Maven / Gradle / Ivy

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