com.alipay.api.domain.AlipayEcoRenthousePublicrentApplyscheduleSyncModel 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, 2018-06-25 14:49:09
*/
public class AlipayEcoRenthousePublicrentApplyscheduleSyncModel extends AlipayObject {
private static final long serialVersionUID = 8837124927893875666L;
/**
* 申请单进度列表
*/
@ApiListField("apply_schedule_list")
@ApiField("eco_apply_schedule")
private List applyScheduleList;
/**
* 证件号-身份证号
*/
@ApiField("cert_no")
private String certNo;
/**
* 租客用户Id
*/
@ApiField("rent_id")
private String rentId;
public List getApplyScheduleList() {
return this.applyScheduleList;
}
public void setApplyScheduleList(List applyScheduleList) {
this.applyScheduleList = applyScheduleList;
}
public String getCertNo() {
return this.certNo;
}
public void setCertNo(String certNo) {
this.certNo = certNo;
}
public String getRentId() {
return this.rentId;
}
public void setRentId(String rentId) {
this.rentId = rentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy