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

me.chanjar.weixin.channel.bean.brand.BrandSearchParam Maven / Gradle / Ivy

The newest version!
package me.chanjar.weixin.channel.bean.brand;

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

/**
 * 品牌搜索参数
 *
 * @author Zeyes
 */
@Data
@EqualsAndHashCode(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class BrandSearchParam extends StreamPageParam {

  private static final long serialVersionUID = 5961201403338269712L;
  /** 审核单状态, 不填默认拉全部商品 */
  @JsonProperty("status")
  private Integer status;

  public BrandSearchParam() {
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy