
com.alipay.api.domain.AlipayEcoEduCampusJobCancelModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 实习生职位下线接口
*
* @author auto create
* @since 1.0, 2017-08-07 18:02:53
*/
public class AlipayEcoEduCampusJobCancelModel extends AlipayObject {
private static final long serialVersionUID = 2526585813511432955L;
/**
* 职位来源方编码
*/
@ApiField("source_code")
private String sourceCode;
/**
* 职位在合作方的ID
*/
@ApiField("source_id")
private String sourceId;
public String getSourceCode() {
return this.sourceCode;
}
public void setSourceCode(String sourceCode) {
this.sourceCode = sourceCode;
}
public String getSourceId() {
return this.sourceId;
}
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy