com.alipay.api.domain.InsMerchant Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 保险机构
*
* @author auto create
* @since 1.0, 2019-12-09 15:22:25
*/
public class InsMerchant extends AlipayObject {
private static final long serialVersionUID = 4447548382762319724L;
/**
* 机构全称
*/
@ApiField("name")
private String name;
/**
* 服务电话
*/
@ApiField("service_phone")
private String servicePhone;
/**
* 机构简称
*/
@ApiField("short_name")
private String shortName;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getServicePhone() {
return this.servicePhone;
}
public void setServicePhone(String servicePhone) {
this.servicePhone = servicePhone;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String shortName) {
this.shortName = shortName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy