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

me.chanjar.weixin.channel.bean.order.OrderSharerInfo Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 分享信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
public class OrderSharerInfo implements Serializable {

  private static final long serialVersionUID = 7183259072254660971L;
  /** 分享员openid */
  @JsonProperty("sharer_openid")
  private String sharerOpenid;

  /** 分享员unionid */
  @JsonProperty("sharer_unionid")
  private String sharerUnionid;

  /** 分享员类型,0:普通分享员,1:店铺分享员 */
  @JsonProperty("sharer_type")
  private Integer sharerType;

  /** 分享场景 {@link me.chanjar.weixin.channel.enums.ShareScene} */
  @JsonProperty("share_scene")
  private Integer shareScene;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy