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

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

There is a newer version: 4.7.1.B
Show newest version
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 OrderConfirmInfo extends OrderIdInfo {

  private static final long serialVersionUID = -2569494642832261346L;
  /** 1:用户确认收货;2:超时自动确认收货 */
  @JsonProperty("confirm_type")
  @JacksonXmlProperty(localName = "confirm_type")
  private Integer confirmType;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy