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

me.chanjar.weixin.channel.bean.freight.TemplateListParam Maven / Gradle / Ivy

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

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

/**
 * 运费模板 列表 请求参数
 *
 * @author Zeyes
 */
@Data
@JsonInclude(Include.NON_NULL)
@EqualsAndHashCode(callSuper = true)
public class TemplateListParam extends OffsetParam {

  private static final long serialVersionUID = -6716154891499581562L;

  public TemplateListParam() {
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy