com.alipay.api.domain.MedicareInfoVO 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, 2024-12-09 14:45:52
*/
public class MedicareInfoVO extends AlipayObject {
private static final long serialVersionUID = 2163929298676988965L;
/**
* 医保个账金额
*/
@ApiField("mi_personal_amount")
private Long miPersonalAmount;
/**
* 医保统筹金额
*/
@ApiField("mi_pool_amount")
private Long miPoolAmount;
/**
* 医保自付金额
*/
@ApiField("mi_self_amount")
private Long miSelfAmount;
public Long getMiPersonalAmount() {
return this.miPersonalAmount;
}
public void setMiPersonalAmount(Long miPersonalAmount) {
this.miPersonalAmount = miPersonalAmount;
}
public Long getMiPoolAmount() {
return this.miPoolAmount;
}
public void setMiPoolAmount(Long miPoolAmount) {
this.miPoolAmount = miPoolAmount;
}
public Long getMiSelfAmount() {
return this.miSelfAmount;
}
public void setMiSelfAmount(Long miSelfAmount) {
this.miSelfAmount = miSelfAmount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy