|
@@ -1,9 +1,11 @@
|
|
|
package com.xjrsoft.module.internship.vo;
|
|
package com.xjrsoft.module.internship.vo;
|
|
|
|
|
|
|
|
|
|
+import com.alibaba.excel.annotation.write.style.ContentStyle;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.time.LocalDateTime;
|
|
|
|
|
+import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* @title: 实习计划参与人表分页列表出参
|
|
* @title: 实习计划参与人表分页列表出参
|
|
@@ -14,95 +16,98 @@ import java.time.LocalDateTime;
|
|
|
@Data
|
|
@Data
|
|
|
public class InternshipPlanManageParticipantPageVo {
|
|
public class InternshipPlanManageParticipantPageVo {
|
|
|
|
|
|
|
|
- /**
|
|
|
|
|
- * 主键编号
|
|
|
|
|
- */
|
|
|
|
|
@ApiModelProperty("主键编号")
|
|
@ApiModelProperty("主键编号")
|
|
|
- private String id;
|
|
|
|
|
- /**
|
|
|
|
|
- * 创建人
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("创建人")
|
|
|
|
|
- private Long createUserId;
|
|
|
|
|
- /**
|
|
|
|
|
- * 创建时间
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("创建时间")
|
|
|
|
|
- private LocalDateTime createDate;
|
|
|
|
|
- /**
|
|
|
|
|
- * 修改人
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("修改人")
|
|
|
|
|
- private Long modifyUserId;
|
|
|
|
|
- /**
|
|
|
|
|
- * 修改时间
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("修改时间")
|
|
|
|
|
- private LocalDateTime modifyDate;
|
|
|
|
|
- /**
|
|
|
|
|
- * 删除标记
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("删除标记")
|
|
|
|
|
- private Integer deleteMark;
|
|
|
|
|
- /**
|
|
|
|
|
- * 有效标志
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("有效标志")
|
|
|
|
|
- private Integer enabledMark;
|
|
|
|
|
- /**
|
|
|
|
|
- * 序号
|
|
|
|
|
- */
|
|
|
|
|
|
|
+ private Long id;
|
|
|
|
|
+
|
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
@ApiModelProperty("序号")
|
|
@ApiModelProperty("序号")
|
|
|
private Integer sortCode;
|
|
private Integer sortCode;
|
|
|
- /**
|
|
|
|
|
- * 实习计划id
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("实习计划id")
|
|
|
|
|
- private Long internshipPlanManageId;
|
|
|
|
|
- /**
|
|
|
|
|
- * 实习参与人id
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("实习参与人id")
|
|
|
|
|
- private Long participantUserId;
|
|
|
|
|
- /**
|
|
|
|
|
- * 实习参与人学号
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("实习参与人学号")
|
|
|
|
|
- private String participantUserStudentId;
|
|
|
|
|
- /**
|
|
|
|
|
- * 实习参与人姓名
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("实习参与人姓名")
|
|
|
|
|
- private String participantUserName;
|
|
|
|
|
- /**
|
|
|
|
|
- * 所属专业id(base_major)
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("所属专业id(base_major)")
|
|
|
|
|
- private Long baseMajorId;
|
|
|
|
|
- /**
|
|
|
|
|
- * 所属专业名称
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("所属专业名称")
|
|
|
|
|
- private String baseMajorName;
|
|
|
|
|
- /**
|
|
|
|
|
- * 班级id(base_class)
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("班级id(base_class)")
|
|
|
|
|
- private Long classId;
|
|
|
|
|
- /**
|
|
|
|
|
- * 班级名称
|
|
|
|
|
- */
|
|
|
|
|
|
|
+
|
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
|
+ @ApiModelProperty("学生姓名")
|
|
|
|
|
+ private String studentName;
|
|
|
|
|
+
|
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
|
+ @ApiModelProperty("学号")
|
|
|
|
|
+ private String studentId;
|
|
|
|
|
+
|
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
|
+ @ApiModelProperty("本人电话")
|
|
|
|
|
+ private String phone;
|
|
|
|
|
+
|
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
|
+ @ApiModelProperty("监护人电话")
|
|
|
|
|
+ private String guardianPhone;
|
|
|
|
|
+
|
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
|
+ @ApiModelProperty("班主任名称")
|
|
|
|
|
+ private String teacherName;
|
|
|
|
|
+
|
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
|
+ @ApiModelProperty("班主任电话")
|
|
|
|
|
+ private String teacherPhone;
|
|
|
|
|
+
|
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
@ApiModelProperty("班级名称")
|
|
@ApiModelProperty("班级名称")
|
|
|
private String className;
|
|
private String className;
|
|
|
- /**
|
|
|
|
|
- * 带队老师(xjr_user)
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("带队老师(xjr_user)")
|
|
|
|
|
- private Long teacherId;
|
|
|
|
|
- /**
|
|
|
|
|
- * 实习结果评价
|
|
|
|
|
- */
|
|
|
|
|
- @ApiModelProperty("实习结果评价")
|
|
|
|
|
- private String result;
|
|
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("学习形式")
|
|
|
|
|
+ private String rollModality;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("学习形式")
|
|
|
|
|
+ private String rollModalityCode;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("学籍状态(xjr_dictionary_item[archives_status])")
|
|
|
|
|
+ private String archivesStatus;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("学籍状态(xjr_dictionary_item[archives_status])")
|
|
|
|
|
+ private String archivesStatusCode;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("就读方式(xjr_dictionary_item[stduy_status])")
|
|
|
|
|
+ private String stduyStatus;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("就读方式(xjr_dictionary_item[stduy_status])")
|
|
|
|
|
+ private String stduyStatusCode;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("床位信息")
|
|
|
|
|
+ private String bedInfo;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("头像")
|
|
|
|
|
+ private String avatar;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("出生日期")
|
|
|
|
|
+ private Date birthDate;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("民族")
|
|
|
|
|
+ private String nation;
|
|
|
|
|
+
|
|
|
|
|
+ private String majorSetName;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("性别")
|
|
|
|
|
+ private String gender;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("性别中文")
|
|
|
|
|
+ private String genderCn;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("军训费")
|
|
|
|
|
+ private String jxf;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("教材费")
|
|
|
|
|
+ private String jcf;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("宿舍费")
|
|
|
|
|
+ private String ssf;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("学生类别")
|
|
|
|
|
+ private String studentForm;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("身份证号")
|
|
|
|
|
+ private String credentialNumber;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("实习状态")
|
|
|
|
|
+ private String internshipStateCn;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty("是否已被选择(1:是 0:否)")
|
|
|
|
|
+ private Integer isSelected;
|
|
|
|
|
|
|
|
}
|
|
}
|