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

me.chanjar.weixin.channel.bean.address.AddressListParam Maven / Gradle / Ivy

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

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

/**
 * 用户地址 列表 请求参数
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonInclude(Include.NON_NULL)
public class AddressListParam extends OffsetParam {

  private static final long serialVersionUID = -4434287264623932176L;

  public AddressListParam(Integer offset, Integer limit) {
    super(offset, limit);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy