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

me.chanjar.weixin.channel.bean.limit.LimitTaskListParam Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import me.chanjar.weixin.channel.bean.base.StreamPageParam;

/**
 * @author Zeyes
 */
@Data
public class LimitTaskListParam extends StreamPageParam {

  private static final long serialVersionUID = -7227161890365102302L;


  /** 抢购活动状态 */
  @JsonProperty("status")
  private Integer status;

  public LimitTaskListParam() {
  }

  public LimitTaskListParam(Integer pageSize, String nextKey, Integer status) {
    this.pageSize = pageSize;
    this.nextKey = nextKey;
    this.status = status;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy