BaseStudentDevelopmentVo.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. package com.xjrsoft.module.student.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * @title: 学生去向登记表单出参
  7. * @Author dzx
  8. * @Date: 2024-08-04
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class BaseStudentDevelopmentVo {
  13. /**
  14. *
  15. */
  16. @ApiModelProperty("")
  17. private Long id;
  18. /**
  19. * 登记类型(1:升学 2:就业 3:未就业)
  20. */
  21. @ApiModelProperty("登记类型(1:升学 2:就业 3:未就业)")
  22. private Integer enrollType;
  23. /**
  24. * 毕业id(base_student_graduate)
  25. */
  26. @ApiModelProperty("毕业id(base_student_graduate)")
  27. private Long baseStudentGraduateId;
  28. /**
  29. * 是否自己创业(1:是 0:否)
  30. */
  31. @ApiModelProperty("是否自己创业(1:是 0:否)")
  32. private Integer isEntrepreneurship;
  33. /**
  34. * 创业项目名称
  35. */
  36. @ApiModelProperty("创业项目名称")
  37. private String entrepreneurialProject;
  38. /**
  39. * 是否灵活就业(1:是 0:否)
  40. */
  41. @ApiModelProperty("是否灵活就业(1:是 0:否)")
  42. private Integer isFlexibleWork;
  43. /**
  44. * 是否灵活就业(1:是 0:否)
  45. */
  46. @ApiModelProperty("工作内容")
  47. private Integer workContent;
  48. /**
  49. * 是否校企合作单位(1:是 0:否)
  50. */
  51. @ApiModelProperty("是否校企合作单位(1:是 0:否)")
  52. private Integer isCompanyCoop;
  53. /**
  54. * 企合作单位(company_coop),是校企合作单位
  55. */
  56. @ApiModelProperty("企合作单位(company_coop),是校企合作单位")
  57. private Integer companyCoopId;
  58. /**
  59. * 就业单位名称(非校企合作单位)
  60. */
  61. @ApiModelProperty("就业单位名称(非校企合作单位)")
  62. private String workCompany;
  63. /**
  64. * 就业单位行业
  65. */
  66. @ApiModelProperty("就业单位行业")
  67. private String companyIndustry;
  68. /**
  69. * 就业单位性质
  70. */
  71. @ApiModelProperty("就业单位性质")
  72. private String companyNature;
  73. /**
  74. * 就业单位规模(xjr_dictionary_item[company_scale])
  75. */
  76. @ApiModelProperty("就业单位规模(xjr_dictionary_item[company_scale])")
  77. private String companyScaleCn;
  78. @ApiModelProperty("就业单位规模(xjr_dictionary_item[company_scale])")
  79. private String companyScale;
  80. /**
  81. * 是否对口(1:是 0:否)
  82. */
  83. @ApiModelProperty("是否对口(1:是 0:否)")
  84. private Integer isMatching;
  85. /**
  86. * 最低薪资
  87. */
  88. @ApiModelProperty("最低薪资")
  89. private Double money;
  90. /**
  91. * 就业日期
  92. */
  93. @ApiModelProperty("就业日期")
  94. private Date workDate;
  95. /**
  96. * 就业所在地区
  97. */
  98. @ApiModelProperty("就业所在地区")
  99. private String workCity;
  100. /**
  101. * 学生类型(xjr_dictionary_item[culture_type])
  102. */
  103. @ApiModelProperty("学生类型(xjr_dictionary_item[culture_type])")
  104. private String cultureTypeCn;
  105. /**
  106. * 升学渠道(xjr_dictionary_item[ascending_channels])
  107. */
  108. @ApiModelProperty("升学渠道(xjr_dictionary_item[ascending_channels])")
  109. private String ascendingChannelsCn;
  110. @ApiModelProperty("学生类型(xjr_dictionary_item[culture_type])")
  111. private String cultureType;
  112. /**
  113. * 升学渠道(xjr_dictionary_item[ascending_channels])
  114. */
  115. @ApiModelProperty("升学渠道(xjr_dictionary_item[ascending_channels])")
  116. private String ascendingChannels;
  117. /**
  118. * 学校名称
  119. */
  120. @ApiModelProperty("学校名称")
  121. private String school;
  122. /**
  123. * 录取专业
  124. */
  125. @ApiModelProperty("录取专业")
  126. private String admissionMajor;
  127. /**
  128. * 分数
  129. */
  130. @ApiModelProperty("分数")
  131. private Integer score;
  132. /**
  133. * 升学层次(xjr_dictionary_item[ascending_arrangement])
  134. */
  135. @ApiModelProperty("升学层次(xjr_dictionary_item[ascending_arrangement])")
  136. private String ascendingArrangementCn;
  137. @ApiModelProperty("升学层次(xjr_dictionary_item[ascending_arrangement])")
  138. private String ascendingArrangement;
  139. /**
  140. * 未就业类型(xjr_dictionary_item[unemployed_type])
  141. */
  142. @ApiModelProperty("未就业类型(xjr_dictionary_item[unemployed_type])")
  143. private String unemployedTypeCn;
  144. /**
  145. * 备注信息
  146. */
  147. @ApiModelProperty("备注信息")
  148. private String remark;
  149. @ApiModelProperty("未就业类型(xjr_dictionary_item[unemployed_type])")
  150. private String unemployedType;
  151. }