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

me.chanjar.weixin.channel.bean.compass.finder.SaleProfileDataParam Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.channel.bean.compass.finder;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;

/**
 * 获取带货人群数据请求参数
 *
 * @author Winnie
 */
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SaleProfileDataParam extends CompassFinderBaseParam {

  private static final long serialVersionUID = 4037843292285732855L;

  /**
   * 用户类型 {@link me.chanjar.weixin.channel.enums.SaleProfileUserType}
   */
  @JsonProperty("type")
  private Integer type;

  public SaleProfileDataParam(String ds, Integer type) {
    super(ds);
    this.type = type;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy