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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.39.218.ALL
Show newest version
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-12-01 15:59:02
 */
public class MedicalGuideCardData extends AlipayObject {

	private static final long serialVersionUID = 1355927759877634344L;

	/**
	 * 是否为手动输入
	 */
	@ApiField("manual_input")
	private Boolean manualInput;

	/**
	 * 选项
	 */
	@ApiListField("options")
	@ApiField("string")
	private List options;

	/**
	 * 选项类型
	 */
	@ApiField("options_choice_type")
	private String optionsChoiceType;

	/**
	 * 对话是否刷新
	 */
	@ApiField("refresh")
	private Boolean refresh;

	/**
	 * 特殊选项
	 */
	@ApiListField("special_options")
	@ApiField("string")
	private List specialOptions;

	/**
	 * 症状部位信息
	 */
	@ApiListField("symptom_part_infos")
	@ApiField("symptom_part_info")
	private List symptomPartInfos;

	/**
	 * 医疗导诊结果标签
	 */
	@ApiListField("tabs")
	@ApiField("medical_guide_tab")
	private List tabs;

	public Boolean getManualInput() {
		return this.manualInput;
	}
	public void setManualInput(Boolean manualInput) {
		this.manualInput = manualInput;
	}

	public List getOptions() {
		return this.options;
	}
	public void setOptions(List options) {
		this.options = options;
	}

	public String getOptionsChoiceType() {
		return this.optionsChoiceType;
	}
	public void setOptionsChoiceType(String optionsChoiceType) {
		this.optionsChoiceType = optionsChoiceType;
	}

	public Boolean getRefresh() {
		return this.refresh;
	}
	public void setRefresh(Boolean refresh) {
		this.refresh = refresh;
	}

	public List getSpecialOptions() {
		return this.specialOptions;
	}
	public void setSpecialOptions(List specialOptions) {
		this.specialOptions = specialOptions;
	}

	public List getSymptomPartInfos() {
		return this.symptomPartInfos;
	}
	public void setSymptomPartInfos(List symptomPartInfos) {
		this.symptomPartInfos = symptomPartInfos;
	}

	public List getTabs() {
		return this.tabs;
	}
	public void setTabs(List tabs) {
		this.tabs = tabs;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy