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

com.alipay.api.domain.ChargeInstMode Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

public class ChargeInstMode extends AlipayObject {

    private static final long serialVersionUID = 7341791929687286478L;

    /**
     * 机构简称(英文名称)
     */
    @ApiField("charge_inst")
    private String chargeInst;

    /**
     * 机构中文名称
     */
    @ApiField("charge_inst_name")
    private String chargeInstName;

    /**
     * 城市
     */
    @ApiField("city")
    private String city;

    /**
     * 省份
     */
    @ApiField("province")
    private String province;

    public String getChargeInst() {
        return this.chargeInst;
    }

    public void setChargeInst(
            String chargeInst) {
        this.chargeInst = chargeInst;
    }

    public String getChargeInstName() {
        return this.chargeInstName;
    }

    public void setChargeInstName(
            String chargeInstName) {
        this.chargeInstName = chargeInstName;
    }

    public String getCity() {
        return this.city;
    }

    public void setCity(
            String city) {
        this.city = city;
    }

    public String getProvince() {
        return this.province;
    }

    public void setProvince(
            String province) {
        this.province = province;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy