com.alipay.api.domain.AlipayInsSceneHealthDrugcatalogueBatchqueryModel 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 java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 健康门诊险药品目录批量查询接口
*
* @author auto create
* @since 1.0, 2023-08-07 19:23:52
*/
public class AlipayInsSceneHealthDrugcatalogueBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 5796478933857636477L;
/**
* 蚂蚁合约单号
*/
@ApiField("ant_ser_contract_no")
private String antSerContractNo;
/**
* 疾病名称列表
*/
@ApiListField("disease_name_list")
@ApiField("string")
private List diseaseNameList;
/**
* 是否急诊,true急诊,false非急诊
*/
@ApiField("emergency")
private Boolean emergency;
/**
* 药品通用名列表
*/
@ApiListField("general_name_list")
@ApiField("string")
private List generalNameList;
/**
* 商品名称列表
*/
@ApiListField("item_name_list")
@ApiField("string")
private List itemNameList;
public String getAntSerContractNo() {
return this.antSerContractNo;
}
public void setAntSerContractNo(String antSerContractNo) {
this.antSerContractNo = antSerContractNo;
}
public List getDiseaseNameList() {
return this.diseaseNameList;
}
public void setDiseaseNameList(List diseaseNameList) {
this.diseaseNameList = diseaseNameList;
}
public Boolean getEmergency() {
return this.emergency;
}
public void setEmergency(Boolean emergency) {
this.emergency = emergency;
}
public List getGeneralNameList() {
return this.generalNameList;
}
public void setGeneralNameList(List generalNameList) {
this.generalNameList = generalNameList;
}
public List getItemNameList() {
return this.itemNameList;
}
public void setItemNameList(List itemNameList) {
this.itemNameList = itemNameList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy