me.chanjar.weixin.channel.bean.message.SessionMessage Maven / Gradle / Ivy
package me.chanjar.weixin.channel.bean.message;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 会话消息
*
* @author Zeyes
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class SessionMessage extends WxChannelMessage {
private static final long serialVersionUID = -429381568555605309L;
@JsonProperty("SessionFrom")
@JacksonXmlProperty(localName = "SessionFrom")
private String from;
}