|
|
@@ -0,0 +1,110 @@
|
|
|
+package com.xjrsoft.module.internship.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+* @title: 学生实习记录表
|
|
|
+* @Author dzx
|
|
|
+* @Date: 2025-07-01
|
|
|
+* @Version 1.0
|
|
|
+*/
|
|
|
+@Data
|
|
|
+@TableName("student_internship_alone_apply")
|
|
|
+@ApiModel(value = "student_internship_alone_apply", description = "学生自主实习申请表")
|
|
|
+public class StudentInternshipAloneApply implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键编号
|
|
|
+ */
|
|
|
+ @ApiModelProperty("主键编号")
|
|
|
+ @TableId
|
|
|
+ private Long id;
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty("创建时间")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private LocalDateTime createDate;
|
|
|
+ /**
|
|
|
+ * 修改时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty("修改时间")
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ private LocalDateTime modifyDate;
|
|
|
+ /**
|
|
|
+ * 删除标记
|
|
|
+ */
|
|
|
+ @ApiModelProperty("删除标记")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ @TableLogic
|
|
|
+ private Integer deleteMark;
|
|
|
+ /**
|
|
|
+ * 有效标志
|
|
|
+ */
|
|
|
+ @ApiModelProperty("有效标志")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private Integer enabledMark;
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ @ApiModelProperty("")
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ private Long modifyUserId;
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ @ApiModelProperty("")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private Long createUserId;
|
|
|
+
|
|
|
+ @ApiModelProperty("缘由")
|
|
|
+ private String reason;
|
|
|
+
|
|
|
+ @ApiModelProperty("登记学生(xjr_user)")
|
|
|
+ private Long studentUserId;
|
|
|
+ /**
|
|
|
+ * 实习时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty("所属班级(base_class)")
|
|
|
+ private Long classId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 所属实习计划id(internship_plan_manage)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("所属实习计划id(internship_plan_manage)")
|
|
|
+ private Long internshipPlanManageId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 附件(xjr_file)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("申请附件(xjr_file)")
|
|
|
+ private Long folderId;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty("实习报告内容")
|
|
|
+ private String reportContent;
|
|
|
+
|
|
|
+ @ApiModelProperty("合同附件(xjr_file)")
|
|
|
+ private Long contractFolderId;
|
|
|
+
|
|
|
+ @ApiModelProperty("工资流水附件(xjr_file)")
|
|
|
+ private Long wagesFolderId;
|
|
|
+
|
|
|
+ @ApiModelProperty("总结材料附件(xjr_file)")
|
|
|
+ private Long summarizeFolderId;
|
|
|
+
|
|
|
+}
|