com.alipay.api.domain.AlipayEcoCplifeBillBatchUploadModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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:34:58
*/
public class AlipayEcoCplifeBillBatchUploadModel extends AlipayObject {
private static final long serialVersionUID = 2121514259635821173L;
/**
* 每次上传物业费账单,都需要提供一个批次号。对于每一个合作伙伴,传递的每一个批次号都必须保证唯一性,同时对于批次号内的账单明细数据必须保证唯一性;
建议格式为:8位当天日期+流水号(3~24位,流水号可以接受数字或英文字符,建议使用数字)。
*/
@ApiField("batch_id")
private String batchId;
/**
* 账单应收条目明细集合,同一小区内条目明细不允许重复;一次接口请求最多支持1000条明细。
*/
@ApiListField("bill_set")
@ApiField("c_p_bill_set")
private List billSet;
/**
* 支付宝社区小区统一编号,必须在物业账号名下存在。
*/
@ApiField("community_id")
private String communityId;
public String getBatchId() {
return this.batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
}
public List getBillSet() {
return this.billSet;
}
public void setBillSet(List billSet) {
this.billSet = billSet;
}
public String getCommunityId() {
return this.communityId;
}
public void setCommunityId(String communityId) {
this.communityId = communityId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy