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

com.alipay.api.response.AlipayInsSceneInshealthserviceprodItemoperationrecordQueryResponse Maven / Gradle / Ivy

package com.alipay.api.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.ExternalItemOperationRecordQueryDTO;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.ins.scene.inshealthserviceprod.itemoperationrecord.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-08-21 02:01:47
 */
public class AlipayInsSceneInshealthserviceprodItemoperationrecordQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 7825111362859391717L;

	/** 
	 * 操作记录列表
	 */
	@ApiListField("record_list")
	@ApiField("external_item_operation_record_query_d_t_o")
	private List recordList;

	/** 
	 * 总数
	 */
	@ApiField("total_count")
	private Long totalCount;

	public void setRecordList(List recordList) {
		this.recordList = recordList;
	}
	public List getRecordList( ) {
		return this.recordList;
	}

	public void setTotalCount(Long totalCount) {
		this.totalCount = totalCount;
	}
	public Long getTotalCount( ) {
		return this.totalCount;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy