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

me.chanjar.weixin.channel.bean.message.order.OrderExtInfo Maven / Gradle / Ivy

package me.chanjar.weixin.channel.bean.message.order;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;

/**
 * 订单其他信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class OrderExtInfo extends OrderIdInfo {

  private static final long serialVersionUID = 4723533858047219828L;
  /** 类型 1:联盟佣金信息 */
  @JsonProperty("type")
  @JacksonXmlProperty(localName = "type")
  private Integer type;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy