| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- package com.xjrsoft.module.student.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- /**
- * @title: 学生去向登记表单出参
- * @Author dzx
- * @Date: 2024-08-04
- * @Version 1.0
- */
- @Data
- public class BaseStudentDevelopmentVo {
- /**
- *
- */
- @ApiModelProperty("")
- private Long id;
- /**
- * 登记类型(1:升学 2:就业 3:未就业)
- */
- @ApiModelProperty("登记类型(1:升学 2:就业 3:未就业)")
- private Integer enrollType;
- /**
- * 毕业id(base_student_graduate)
- */
- @ApiModelProperty("毕业id(base_student_graduate)")
- private Long baseStudentGraduateId;
- /**
- * 是否自己创业(1:是 0:否)
- */
- @ApiModelProperty("是否自己创业(1:是 0:否)")
- private Integer isEntrepreneurship;
- /**
- * 创业项目名称
- */
- @ApiModelProperty("创业项目名称")
- private String entrepreneurialProject;
- /**
- * 是否灵活就业(1:是 0:否)
- */
- @ApiModelProperty("是否灵活就业(1:是 0:否)")
- private Integer isFlexibleWork;
- /**
- * 是否灵活就业(1:是 0:否)
- */
- @ApiModelProperty("工作内容")
- private Integer workContent;
- /**
- * 是否校企合作单位(1:是 0:否)
- */
- @ApiModelProperty("是否校企合作单位(1:是 0:否)")
- private Integer isCompanyCoop;
- /**
- * 企合作单位(company_coop),是校企合作单位
- */
- @ApiModelProperty("企合作单位(company_coop),是校企合作单位")
- private Integer companyCoopId;
- /**
- * 就业单位名称(非校企合作单位)
- */
- @ApiModelProperty("就业单位名称(非校企合作单位)")
- private String workCompany;
- /**
- * 就业单位行业
- */
- @ApiModelProperty("就业单位行业")
- private String companyIndustry;
- /**
- * 就业单位性质
- */
- @ApiModelProperty("就业单位性质")
- private String companyNature;
- /**
- * 就业单位规模(xjr_dictionary_item[company_scale])
- */
- @ApiModelProperty("就业单位规模(xjr_dictionary_item[company_scale])")
- private String companyScaleCn;
- @ApiModelProperty("就业单位规模(xjr_dictionary_item[company_scale])")
- private String companyScale;
- /**
- * 是否对口(1:是 0:否)
- */
- @ApiModelProperty("是否对口(1:是 0:否)")
- private Integer isMatching;
- /**
- * 最低薪资
- */
- @ApiModelProperty("最低薪资")
- private Double money;
- /**
- * 就业日期
- */
- @ApiModelProperty("就业日期")
- private Date workDate;
- /**
- * 就业所在地区
- */
- @ApiModelProperty("就业所在地区")
- private String workCity;
- /**
- * 学生类型(xjr_dictionary_item[culture_type])
- */
- @ApiModelProperty("学生类型(xjr_dictionary_item[culture_type])")
- private String cultureTypeCn;
- /**
- * 升学渠道(xjr_dictionary_item[ascending_channels])
- */
- @ApiModelProperty("升学渠道(xjr_dictionary_item[ascending_channels])")
- private String ascendingChannelsCn;
- @ApiModelProperty("学生类型(xjr_dictionary_item[culture_type])")
- private String cultureType;
- /**
- * 升学渠道(xjr_dictionary_item[ascending_channels])
- */
- @ApiModelProperty("升学渠道(xjr_dictionary_item[ascending_channels])")
- private String ascendingChannels;
- /**
- * 学校名称
- */
- @ApiModelProperty("学校名称")
- private String school;
- /**
- * 录取专业
- */
- @ApiModelProperty("录取专业")
- private String admissionMajor;
- /**
- * 分数
- */
- @ApiModelProperty("分数")
- private Integer score;
- /**
- * 升学层次(xjr_dictionary_item[ascending_arrangement])
- */
- @ApiModelProperty("升学层次(xjr_dictionary_item[ascending_arrangement])")
- private String ascendingArrangementCn;
- @ApiModelProperty("升学层次(xjr_dictionary_item[ascending_arrangement])")
- private String ascendingArrangement;
- /**
- * 未就业类型(xjr_dictionary_item[unemployed_type])
- */
- @ApiModelProperty("未就业类型(xjr_dictionary_item[unemployed_type])")
- private String unemployedTypeCn;
- /**
- * 备注信息
- */
- @ApiModelProperty("备注信息")
- private String remark;
- @ApiModelProperty("未就业类型(xjr_dictionary_item[unemployed_type])")
- private String unemployedType;
- }
|