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

com.alipay.v3.util.schema.sdk.Poi Maven / Gradle / Ivy

The newest version!
/**
 * Alipay.com Inc.
 * Copyright (c) 2004-2021 All Rights Reserved.
 */
package com.alipay.v3.util.schema.sdk;

/**
 * @author junying
 * @version : Poi.java, v 0.1 2021年03月24日 4:52 下午 junying Exp $
 */
public class Poi {
    private String poiName;
    private String shopId;
    private String address;
    private String cityCode;

    /**
     * Getter method for property poiName.
     *
     * @return property value of poiName
     */
    public String getPoiName() {
        return poiName;
    }

    /**
     * Setter method for property poiName.
     *
     * @param poiName value to be assigned to property poiName
     */
    public void setPoiName(String poiName) {
        this.poiName = poiName;
    }

    /**
     * Getter method for property shopId.
     *
     * @return property value of shopId
     */
    public String getShopId() {
        return shopId;
    }

    /**
     * Setter method for property shopId.
     *
     * @param shopId value to be assigned to property shopId
     */
    public void setShopId(String shopId) {
        this.shopId = shopId;
    }

    /**
     * Getter method for property address.
     *
     * @return property value of address
     */
    public String getAddress() {
        return address;
    }

    /**
     * Setter method for property address.
     *
     * @param address value to be assigned to property address
     */
    public void setAddress(String address) {
        this.address = address;
    }

    /**
     * Getter method for property cityCode.
     *
     * @return property value of cityCode
     */
    public String getCityCode() {
        return cityCode;
    }

    /**
     * Setter method for property cityCode.
     *
     * @param cityCode value to be assigned to property cityCode
     */
    public void setCityCode(String cityCode) {
        this.cityCode = cityCode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy