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

me.chanjar.weixin.channel.bean.sharer.SharerListParam Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import me.chanjar.weixin.channel.bean.base.PageParam;

/**
 * @author Zeyes
 */
@Data
@EqualsAndHashCode(callSuper = true)
@JsonInclude(Include.NON_NULL)
public class SharerListParam extends PageParam {

  private static final long serialVersionUID = -2454284952706596246L;
  /** 分享员类型 {@link me.chanjar.weixin.channel.enums.SharerType} */
  @JsonProperty("sharer_type")
  private Integer sharerType;

  public SharerListParam() {
  }

  public SharerListParam(Integer page, Integer pageSize, Integer sharerType) {
    super(page, pageSize);
    this.sharerType = sharerType;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy