|
|
@@ -0,0 +1,109 @@
|
|
|
+package com.xjrsoft.module.student.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.util.Date;
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+* @title: 学生插班
|
|
|
+* @Author dzx
|
|
|
+* @Date: 2024年4月17日
|
|
|
+* @Version 1.0
|
|
|
+*/
|
|
|
+@Data
|
|
|
+@TableName("student_transfer")
|
|
|
+@ApiModel(value = "student_transfer", description = "干部候选人")
|
|
|
+public class StudentTransfer implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键编号
|
|
|
+ */
|
|
|
+ @ApiModelProperty("主键编号")
|
|
|
+ @TableId
|
|
|
+ private Long id;
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ @ApiModelProperty("创建人")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private Long createUserId;
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty("创建时间")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private Date createDate;
|
|
|
+ /**
|
|
|
+ * 修改人
|
|
|
+ */
|
|
|
+ @ApiModelProperty("修改人")
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ private Long modifyUserId;
|
|
|
+ /**
|
|
|
+ * 修改时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty("修改时间")
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ private Date modifyDate;
|
|
|
+ /**
|
|
|
+ * 删除标记
|
|
|
+ */
|
|
|
+ @ApiModelProperty("删除标记")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ @TableLogic
|
|
|
+ private Integer deleteMark;
|
|
|
+ /**
|
|
|
+ * 有效标志
|
|
|
+ */
|
|
|
+ @ApiModelProperty("有效标志")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private Integer enabledMark;
|
|
|
+ /**
|
|
|
+ * 序号
|
|
|
+ */
|
|
|
+ @ApiModelProperty("序号")
|
|
|
+ private Integer sortCode;
|
|
|
+
|
|
|
+ @ApiModelProperty("学生id")
|
|
|
+ private Long studentUserId;
|
|
|
+
|
|
|
+ @ApiModelProperty("性别")
|
|
|
+ private String gender;
|
|
|
+
|
|
|
+ @ApiModelProperty("身份证")
|
|
|
+ private String IDNumber;
|
|
|
+
|
|
|
+ @ApiModelProperty("就读方式(xjr_dictionary_item[stduy_status])")
|
|
|
+ private String studyStatus;
|
|
|
+
|
|
|
+ @ApiModelProperty("教材费缴费情况")
|
|
|
+ private String textbookFees;
|
|
|
+
|
|
|
+ @ApiModelProperty("住宿费缴费情况")
|
|
|
+ private String homestay;
|
|
|
+
|
|
|
+ @ApiModelProperty("班级id")
|
|
|
+ private Long classId;
|
|
|
+
|
|
|
+ @ApiModelProperty("班主任")
|
|
|
+ private Long teacherId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态(1:结束 0:未结束)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("状态(1:结束 0:未结束)")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+
|
|
|
+}
|