com.alipay.api.domain.EduStudentInfoShareResult 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, 2016-10-26 17:43:38
*/
public class EduStudentInfoShareResult extends AlipayObject {
private static final long serialVersionUID = 5749925759886256128L;
/**
* 教育分类
*/
@ApiField("biz_type")
private String bizType;
/**
* 学生详细信息
*/
@ApiListField("student_infos")
@ApiField("student_info")
private List studentInfos;
/**
* 用户的userid
*/
@ApiField("user_id")
private String userId;
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public List getStudentInfos() {
return this.studentInfos;
}
public void setStudentInfos(List studentInfos) {
this.studentInfos = studentInfos;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy