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

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

There is a newer version: 2.0.0
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, 2017-01-18 16:45:48
 */
public class AlipayEcoCplifeBillModifyModel extends AlipayObject {

	private static final long serialVersionUID = 8297128926369634964L;

	/**
	 * 待修改的物业费账单应收明细条目列表,一次最多修改1000条明细条目。如果明细条目已被支付或在支付中,则无法被修改。接口会返回无法修改的明细条目ID列表。
	 */
	@ApiListField("bill_entry_list")
	@ApiField("c_p_bill_modify_set")
	private List billEntryList;

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

	public List getBillEntryList() {
		return this.billEntryList;
	}
	public void setBillEntryList(List billEntryList) {
		this.billEntryList = billEntryList;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy