com.alipay.api.domain.MedicalInsuredCityList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 医保电子凭证参保城市列表
*
* @author auto create
* @since 1.0, 2023-08-04 16:04:19
*/
public class MedicalInsuredCityList extends AlipayObject {
private static final long serialVersionUID = 3615495227872362241L;
/**
* 参保地城市编码(国标)
*/
@ApiField("city_code")
private String cityCode;
/**
* 参保地城市编码(机构)
*/
@ApiField("ins_city_code")
private String insCityCode;
/**
* 参保地城市名称(机构)
*/
@ApiField("ins_city_name")
private String insCityName;
/**
* 是否是默认参保地
*/
@ApiField("is_default_city")
private String isDefaultCity;
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getInsCityCode() {
return this.insCityCode;
}
public void setInsCityCode(String insCityCode) {
this.insCityCode = insCityCode;
}
public String getInsCityName() {
return this.insCityName;
}
public void setInsCityName(String insCityName) {
this.insCityName = insCityName;
}
public String getIsDefaultCity() {
return this.isDefaultCity;
}
public void setIsDefaultCity(String isDefaultCity) {
this.isDefaultCity = isDefaultCity;
}
}