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

com.alipay.api.domain.MedicalServiceMagaTemplateDTO 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;

/**
 * 医疗服务maga投放templat
 *
 * @author auto create
 * @since 1.0, 2024-09-30 10:13:03
 */
public class MedicalServiceMagaTemplateDTO extends AlipayObject {

	private static final long serialVersionUID = 3521942879415163166L;

	/**
	 * 服务数量
	 */
	@ApiField("card_count")
	private Long cardCount;

	/**
	 * 服务卡片列表
	 */
	@ApiListField("card_list")
	@ApiField("medical_service_maga_card_d_t_o")
	private List cardList;

	/**
	 * 模板ID
	 */
	@ApiField("template_id")
	private String templateId;

	/**
	 * 模板名称
	 */
	@ApiField("template_name")
	private String templateName;

	public Long getCardCount() {
		return this.cardCount;
	}
	public void setCardCount(Long cardCount) {
		this.cardCount = cardCount;
	}

	public List getCardList() {
		return this.cardList;
	}
	public void setCardList(List cardList) {
		this.cardList = cardList;
	}

	public String getTemplateId() {
		return this.templateId;
	}
	public void setTemplateId(String templateId) {
		this.templateId = templateId;
	}

	public String getTemplateName() {
		return this.templateName;
	}
	public void setTemplateName(String templateName) {
		this.templateName = templateName;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy