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

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

package me.chanjar.weixin.channel.bean.compass.finder;

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

/**
 * 获取带货人群数据响应
 *
 * @author Winnie
 */
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class SaleProfileDataResponse extends WxChannelBaseResponse {

  private static final long serialVersionUID = - 6409722880191468272L;

  /**
   * 带货人群数据
   */
  @JsonProperty("data")
  private SaleProfileData data;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy