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

me.chanjar.weixin.channel.bean.message.vip.ExchangeInfoMessage Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.channel.bean.message.vip;

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 asushiye
 */

@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class ExchangeInfoMessage extends WxChannelMessage {

  private static final long serialVersionUID = 2926346100146724110L;
  /** 积分兑换信息 */
  @JsonProperty("exchange_info")
  @JacksonXmlProperty(localName = "exchange_info")
  private ExchangeInfo exchangeInfo;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy