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

me.chanjar.weixin.channel.bean.warehouse.WarehouseLocation Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 仓库区域
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
public class WarehouseLocation implements Serializable {

  private static final long serialVersionUID = 1626579682640060352L;

  /** 省份地址编码 */
  @JsonProperty("address_id1")
  private Integer addressId1;

  /** 市地址编码 */
  @JsonProperty("address_id2")
  private Integer addressId2;

  /** 区地址编码 */
  @JsonProperty("address_id3")
  private Integer addressId3;

  /** 街道地址编码 */
  @JsonProperty("address_id4")
  private Integer addressId4;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy