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

com.alipay.api.response.AlipayCommerceLeaseEnrollQueryResponse 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.response;

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

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.commerce.lease.enroll.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-08-21 03:36:42
 */
public class AlipayCommerceLeaseEnrollQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 3534383435926711134L;

	/** 
	 * 租赁商报名计划信息列表
	 */
	@ApiListField("enroll_list")
	@ApiField("lease_enroll_d_t_o")
	private List enrollList;

	/** 
	 * 当前页数
	 */
	@ApiField("page")
	private Long page;

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

	public void setEnrollList(List enrollList) {
		this.enrollList = enrollList;
	}
	public List getEnrollList( ) {
		return this.enrollList;
	}

	public void setPage(Long page) {
		this.page = page;
	}
	public Long getPage( ) {
		return this.page;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy