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

com.alipay.api.domain.SymptomSubPart 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.40.21.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 SymptomSubPart extends AlipayObject {

	private static final long serialVersionUID = 1723572943418344712L;

	/**
	 * 标志
	 */
	@ApiField("logo")
	private String logo;

	/**
	 * 名称
	 */
	@ApiField("name")
	private String name;

	/**
	 * 顺序
	 */
	@ApiField("order")
	private Long order;

	/**
	 * 症状
	 */
	@ApiListField("symptoms")
	@ApiField("string")
	private List symptoms;

	public String getLogo() {
		return this.logo;
	}
	public void setLogo(String logo) {
		this.logo = logo;
	}

	public String getName() {
		return this.name;
	}
	public void setName(String name) {
		this.name = name;
	}

	public Long getOrder() {
		return this.order;
	}
	public void setOrder(Long order) {
		this.order = order;
	}

	public List getSymptoms() {
		return this.symptoms;
	}
	public void setSymptoms(List symptoms) {
		this.symptoms = symptoms;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy