
com.lark.oapi.service.hire.v1.model.SiteApplicationResume Maven / Gradle / Ivy
// Code generated by lark suite oapi sdk gen
/*
* MIT License
*
* Copyright (c) 2022 Lark Technologies Pte. Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice, shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.lark.oapi.service.hire.v1.model;
import com.lark.oapi.core.response.EmptyData;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.SerializedName;
import com.lark.oapi.core.annotation.Body;
import com.lark.oapi.core.annotation.Path;
import com.lark.oapi.core.annotation.Query;
import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import com.lark.oapi.core.utils.Strings;
import com.lark.oapi.core.response.BaseResponse;
public class SiteApplicationResume {
/**
* 姓名
* 示例值:
*/
@SerializedName("name")
private String name;
/**
* 手机号
*
示例值:
*/
@SerializedName("mobile_number")
private String mobileNumber;
/**
* 手机区号
*
示例值:
*/
@SerializedName("moblie_code")
private String moblieCode;
/**
* 邮箱
*
示例值:
*/
@SerializedName("email")
private String email;
/**
* 简历附件id
*
示例值:
*/
@SerializedName("site_attachment_id")
private String siteAttachmentId;
/**
* 自我评价
*
示例值:
*/
@SerializedName("self_evaluation")
private String selfEvaluation;
/**
* 年龄
*
示例值:
*/
@SerializedName("age")
private String age;
/**
* 工作年限
*
示例值:
*/
@SerializedName("working_year")
private String workingYear;
/**
* 教育经历列表
*
示例值:
*/
@SerializedName("education_list")
private SiteResumeEducation[] educationList;
/**
* 工作经历列表
*
示例值:
*/
@SerializedName("career_list")
private SiteResumeCareer[] careerList;
/**
* 项目经历列表
*
示例值:
*/
@SerializedName("project_list")
private SiteResumeProject[] projectList;
/**
* 实习经历列表
*
示例值:
*/
@SerializedName("internship_list")
private SiteResumeInternship[] internshipList;
/**
* 作品集列表
*
示例值:
*/
@SerializedName("work_list")
private SiteResumeWork[] workList;
/**
* 获奖经历列表
*
示例值:
*/
@SerializedName("award_list")
private SiteResumeAward[] awardList;
/**
* 语言技能列表
*
示例值:
*/
@SerializedName("language_skill_list")
private SiteResumeLanguageSkill[] languageSkillList;
/**
* 社交账号列表
*
示例值:
*/
@SerializedName("sns_list")
private SiteResumeSns[] snsList;
/**
* 身份信息
*
示例值:
*/
@SerializedName("identification")
private SiteResumeIdentification identification;
/**
* 竞赛经历列表
*
示例值:
*/
@SerializedName("competition_list")
private SiteResumeCompetition[] competitionList;
/**
* 证书列表
*
示例值:
*/
@SerializedName("certificate_list")
private SiteResumeCertificate[] certificateList;
// builder 开始
public SiteApplicationResume() {
}
public SiteApplicationResume(Builder builder) {
/**
* 姓名
*
示例值:
*/
this.name = builder.name;
/**
* 手机号
*
示例值:
*/
this.mobileNumber = builder.mobileNumber;
/**
* 手机区号
*
示例值:
*/
this.moblieCode = builder.moblieCode;
/**
* 邮箱
*
示例值:
*/
this.email = builder.email;
/**
* 简历附件id
*
示例值:
*/
this.siteAttachmentId = builder.siteAttachmentId;
/**
* 自我评价
*
示例值:
*/
this.selfEvaluation = builder.selfEvaluation;
/**
* 年龄
*
示例值:
*/
this.age = builder.age;
/**
* 工作年限
*
示例值:
*/
this.workingYear = builder.workingYear;
/**
* 教育经历列表
*
示例值:
*/
this.educationList = builder.educationList;
/**
* 工作经历列表
*
示例值:
*/
this.careerList = builder.careerList;
/**
* 项目经历列表
*
示例值:
*/
this.projectList = builder.projectList;
/**
* 实习经历列表
*
示例值:
*/
this.internshipList = builder.internshipList;
/**
* 作品集列表
*
示例值:
*/
this.workList = builder.workList;
/**
* 获奖经历列表
*
示例值:
*/
this.awardList = builder.awardList;
/**
* 语言技能列表
*
示例值:
*/
this.languageSkillList = builder.languageSkillList;
/**
* 社交账号列表
*
示例值:
*/
this.snsList = builder.snsList;
/**
* 身份信息
*
示例值:
*/
this.identification = builder.identification;
/**
* 竞赛经历列表
*
示例值:
*/
this.competitionList = builder.competitionList;
/**
* 证书列表
*
示例值:
*/
this.certificateList = builder.certificateList;
}
public static Builder newBuilder() {
return new Builder();
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getMobileNumber() {
return this.mobileNumber;
}
public void setMobileNumber(String mobileNumber) {
this.mobileNumber = mobileNumber;
}
public String getMoblieCode() {
return this.moblieCode;
}
public void setMoblieCode(String moblieCode) {
this.moblieCode = moblieCode;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getSiteAttachmentId() {
return this.siteAttachmentId;
}
public void setSiteAttachmentId(String siteAttachmentId) {
this.siteAttachmentId = siteAttachmentId;
}
public String getSelfEvaluation() {
return this.selfEvaluation;
}
public void setSelfEvaluation(String selfEvaluation) {
this.selfEvaluation = selfEvaluation;
}
public String getAge() {
return this.age;
}
public void setAge(String age) {
this.age = age;
}
public String getWorkingYear() {
return this.workingYear;
}
public void setWorkingYear(String workingYear) {
this.workingYear = workingYear;
}
public SiteResumeEducation[] getEducationList() {
return this.educationList;
}
public void setEducationList(SiteResumeEducation[] educationList) {
this.educationList = educationList;
}
public SiteResumeCareer[] getCareerList() {
return this.careerList;
}
public void setCareerList(SiteResumeCareer[] careerList) {
this.careerList = careerList;
}
public SiteResumeProject[] getProjectList() {
return this.projectList;
}
public void setProjectList(SiteResumeProject[] projectList) {
this.projectList = projectList;
}
public SiteResumeInternship[] getInternshipList() {
return this.internshipList;
}
public void setInternshipList(SiteResumeInternship[] internshipList) {
this.internshipList = internshipList;
}
public SiteResumeWork[] getWorkList() {
return this.workList;
}
public void setWorkList(SiteResumeWork[] workList) {
this.workList = workList;
}
public SiteResumeAward[] getAwardList() {
return this.awardList;
}
public void setAwardList(SiteResumeAward[] awardList) {
this.awardList = awardList;
}
public SiteResumeLanguageSkill[] getLanguageSkillList() {
return this.languageSkillList;
}
public void setLanguageSkillList(SiteResumeLanguageSkill[] languageSkillList) {
this.languageSkillList = languageSkillList;
}
public SiteResumeSns[] getSnsList() {
return this.snsList;
}
public void setSnsList(SiteResumeSns[] snsList) {
this.snsList = snsList;
}
public SiteResumeIdentification getIdentification() {
return this.identification;
}
public void setIdentification(SiteResumeIdentification identification) {
this.identification = identification;
}
public SiteResumeCompetition[] getCompetitionList() {
return this.competitionList;
}
public void setCompetitionList(SiteResumeCompetition[] competitionList) {
this.competitionList = competitionList;
}
public SiteResumeCertificate[] getCertificateList() {
return this.certificateList;
}
public void setCertificateList(SiteResumeCertificate[] certificateList) {
this.certificateList = certificateList;
}
public static class Builder {
/**
* 姓名
*
示例值:
*/
private String name;
/**
* 手机号
*
示例值:
*/
private String mobileNumber;
/**
* 手机区号
*
示例值:
*/
private String moblieCode;
/**
* 邮箱
*
示例值:
*/
private String email;
/**
* 简历附件id
*
示例值:
*/
private String siteAttachmentId;
/**
* 自我评价
*
示例值:
*/
private String selfEvaluation;
/**
* 年龄
*
示例值:
*/
private String age;
/**
* 工作年限
*
示例值:
*/
private String workingYear;
/**
* 教育经历列表
*
示例值:
*/
private SiteResumeEducation[] educationList;
/**
* 工作经历列表
*
示例值:
*/
private SiteResumeCareer[] careerList;
/**
* 项目经历列表
*
示例值:
*/
private SiteResumeProject[] projectList;
/**
* 实习经历列表
*
示例值:
*/
private SiteResumeInternship[] internshipList;
/**
* 作品集列表
*
示例值:
*/
private SiteResumeWork[] workList;
/**
* 获奖经历列表
*
示例值:
*/
private SiteResumeAward[] awardList;
/**
* 语言技能列表
*
示例值:
*/
private SiteResumeLanguageSkill[] languageSkillList;
/**
* 社交账号列表
*
示例值:
*/
private SiteResumeSns[] snsList;
/**
* 身份信息
*
示例值:
*/
private SiteResumeIdentification identification;
/**
* 竞赛经历列表
*
示例值:
*/
private SiteResumeCompetition[] competitionList;
/**
* 证书列表
*
示例值:
*/
private SiteResumeCertificate[] certificateList;
/**
* 姓名
*
示例值:
*
* @param name
* @return
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* 手机号
*
示例值:
*
* @param mobileNumber
* @return
*/
public Builder mobileNumber(String mobileNumber) {
this.mobileNumber = mobileNumber;
return this;
}
/**
* 手机区号
*
示例值:
*
* @param moblieCode
* @return
*/
public Builder moblieCode(String moblieCode) {
this.moblieCode = moblieCode;
return this;
}
/**
* 邮箱
*
示例值:
*
* @param email
* @return
*/
public Builder email(String email) {
this.email = email;
return this;
}
/**
* 简历附件id
*
示例值:
*
* @param siteAttachmentId
* @return
*/
public Builder siteAttachmentId(String siteAttachmentId) {
this.siteAttachmentId = siteAttachmentId;
return this;
}
/**
* 自我评价
*
示例值:
*
* @param selfEvaluation
* @return
*/
public Builder selfEvaluation(String selfEvaluation) {
this.selfEvaluation = selfEvaluation;
return this;
}
/**
* 年龄
*
示例值:
*
* @param age
* @return
*/
public Builder age(String age) {
this.age = age;
return this;
}
/**
* 工作年限
*
示例值:
*
* @param workingYear
* @return
*/
public Builder workingYear(String workingYear) {
this.workingYear = workingYear;
return this;
}
/**
* 教育经历列表
*
示例值:
*
* @param educationList
* @return
*/
public Builder educationList(SiteResumeEducation[] educationList) {
this.educationList = educationList;
return this;
}
/**
* 工作经历列表
*
示例值:
*
* @param careerList
* @return
*/
public Builder careerList(SiteResumeCareer[] careerList) {
this.careerList = careerList;
return this;
}
/**
* 项目经历列表
*
示例值:
*
* @param projectList
* @return
*/
public Builder projectList(SiteResumeProject[] projectList) {
this.projectList = projectList;
return this;
}
/**
* 实习经历列表
*
示例值:
*
* @param internshipList
* @return
*/
public Builder internshipList(SiteResumeInternship[] internshipList) {
this.internshipList = internshipList;
return this;
}
/**
* 作品集列表
*
示例值:
*
* @param workList
* @return
*/
public Builder workList(SiteResumeWork[] workList) {
this.workList = workList;
return this;
}
/**
* 获奖经历列表
*
示例值:
*
* @param awardList
* @return
*/
public Builder awardList(SiteResumeAward[] awardList) {
this.awardList = awardList;
return this;
}
/**
* 语言技能列表
*
示例值:
*
* @param languageSkillList
* @return
*/
public Builder languageSkillList(SiteResumeLanguageSkill[] languageSkillList) {
this.languageSkillList = languageSkillList;
return this;
}
/**
* 社交账号列表
*
示例值:
*
* @param snsList
* @return
*/
public Builder snsList(SiteResumeSns[] snsList) {
this.snsList = snsList;
return this;
}
/**
* 身份信息
*
示例值:
*
* @param identification
* @return
*/
public Builder identification(SiteResumeIdentification identification) {
this.identification = identification;
return this;
}
/**
* 竞赛经历列表
*
示例值:
*
* @param competitionList
* @return
*/
public Builder competitionList(SiteResumeCompetition[] competitionList) {
this.competitionList = competitionList;
return this;
}
/**
* 证书列表
*
示例值:
*
* @param certificateList
* @return
*/
public Builder certificateList(SiteResumeCertificate[] certificateList) {
this.certificateList = certificateList;
return this;
}
public SiteApplicationResume build() {
return new SiteApplicationResume(this);
}
}
}