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

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

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, 2021-11-09 14:33:24
 */
public class AlipayEcoCplifeBillDeleteModel extends AlipayObject {

	private static final long serialVersionUID = 1121259752992111641L;

	/**
	 * 指定小区下待删除的物业费账单应收明细条目ID列表,一次最多删除1000条,如果明细条目已被支付或在支付中,则无法被删除。接口会返回无法删除的明细条目ID列表。
	 */
	@ApiListField("bill_entry_id_list")
	@ApiField("string")
	private List billEntryIdList;

	/**
	 * 支付宝社区小区统一编号,必须在物业账号名下存在。
	 */
	@ApiField("community_id")
	private String communityId;

	public List getBillEntryIdList() {
		return this.billEntryIdList;
	}
	public void setBillEntryIdList(List billEntryIdList) {
		this.billEntryIdList = billEntryIdList;
	}

	public String getCommunityId() {
		return this.communityId;
	}
	public void setCommunityId(String communityId) {
		this.communityId = communityId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy