|
@@ -26,61 +26,13 @@ import java.util.Date;
|
|
public class BaseStudentCadrePageVo {
|
|
public class BaseStudentCadrePageVo {
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 主键编号
|
|
|
|
- */
|
|
|
|
|
|
+ * 主键编号
|
|
|
|
+ */
|
|
@ContentStyle(dataFormat = 49)
|
|
@ContentStyle(dataFormat = 49)
|
|
@ExcelProperty("主键编号")
|
|
@ExcelProperty("主键编号")
|
|
@ApiModelProperty("主键编号")
|
|
@ApiModelProperty("主键编号")
|
|
private String id;
|
|
private String id;
|
|
- /**
|
|
|
|
- * 创建人
|
|
|
|
- */
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("创建人")
|
|
|
|
- @ApiModelProperty("创建人")
|
|
|
|
- private Long createUserId;
|
|
|
|
- /**
|
|
|
|
- * 创建时间
|
|
|
|
- */
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("创建时间")
|
|
|
|
- @ApiModelProperty("创建时间")
|
|
|
|
- private Date createDate;
|
|
|
|
- /**
|
|
|
|
- * 修改人
|
|
|
|
- */
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("修改人")
|
|
|
|
- @ApiModelProperty("修改人")
|
|
|
|
- private Long modifyUserId;
|
|
|
|
- /**
|
|
|
|
- * 修改时间
|
|
|
|
- */
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("修改时间")
|
|
|
|
- @ApiModelProperty("修改时间")
|
|
|
|
- private Date modifyDate;
|
|
|
|
- /**
|
|
|
|
- * 删除标记
|
|
|
|
- */
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("删除标记")
|
|
|
|
- @ApiModelProperty("删除标记")
|
|
|
|
- private Integer deleteMark;
|
|
|
|
- /**
|
|
|
|
- * 有效标志
|
|
|
|
- */
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("有效标志")
|
|
|
|
- @ApiModelProperty("有效标志")
|
|
|
|
- private Integer enabledMark;
|
|
|
|
- /**
|
|
|
|
- * 序号
|
|
|
|
- */
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("序号")
|
|
|
|
- @ApiModelProperty("序号")
|
|
|
|
- private Integer sortCode;
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 学生id
|
|
* 学生id
|
|
*/
|
|
*/
|
|
@@ -88,6 +40,16 @@ public class BaseStudentCadrePageVo {
|
|
@ExcelProperty("学生id")
|
|
@ExcelProperty("学生id")
|
|
@ApiModelProperty("学生id")
|
|
@ApiModelProperty("学生id")
|
|
private Long userId;
|
|
private Long userId;
|
|
|
|
+
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
+ @ExcelProperty("学生姓名")
|
|
|
|
+ @ApiModelProperty("学生姓名")
|
|
|
|
+ private String userName;
|
|
|
|
+
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
+ @ExcelProperty("学号")
|
|
|
|
+ @ApiModelProperty("学号")
|
|
|
|
+ private String studentId;
|
|
/**
|
|
/**
|
|
* 班级id
|
|
* 班级id
|
|
*/
|
|
*/
|
|
@@ -95,6 +57,11 @@ public class BaseStudentCadrePageVo {
|
|
@ExcelProperty("班级id")
|
|
@ExcelProperty("班级id")
|
|
@ApiModelProperty("班级id")
|
|
@ApiModelProperty("班级id")
|
|
private Long classId;
|
|
private Long classId;
|
|
|
|
+
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
+ @ExcelProperty("班级名称")
|
|
|
|
+ @ApiModelProperty("班级名称")
|
|
|
|
+ private String className;
|
|
/**
|
|
/**
|
|
* 职务id
|
|
* 职务id
|
|
*/
|
|
*/
|
|
@@ -102,6 +69,17 @@ public class BaseStudentCadrePageVo {
|
|
@ExcelProperty("职务id")
|
|
@ExcelProperty("职务id")
|
|
@ApiModelProperty("职务id")
|
|
@ApiModelProperty("职务id")
|
|
private Long postId;
|
|
private Long postId;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
+ @ExcelProperty("职务")
|
|
|
|
+ @ApiModelProperty("职务")
|
|
|
|
+ private String post;
|
|
|
|
+
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
+ @ExcelProperty("职务级别")
|
|
|
|
+ @ApiModelProperty("职务级别")
|
|
|
|
+ private String level;
|
|
/**
|
|
/**
|
|
* 干部部门编号
|
|
* 干部部门编号
|
|
*/
|
|
*/
|
|
@@ -109,6 +87,12 @@ public class BaseStudentCadrePageVo {
|
|
@ExcelProperty("干部部门编号")
|
|
@ExcelProperty("干部部门编号")
|
|
@ApiModelProperty("干部部门编号")
|
|
@ApiModelProperty("干部部门编号")
|
|
private Long cadreDeptId;
|
|
private Long cadreDeptId;
|
|
|
|
+
|
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
|
+ @ExcelProperty("干部部门编号")
|
|
|
|
+ @ApiModelProperty("干部部门编号")
|
|
|
|
+ private String cadreDeptIdCN;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 任职开始时间
|
|
* 任职开始时间
|
|
*/
|
|
*/
|
|
@@ -148,48 +132,4 @@ public class BaseStudentCadrePageVo {
|
|
@ApiModelProperty("离职原因")
|
|
@ApiModelProperty("离职原因")
|
|
private String leaveReason;
|
|
private String leaveReason;
|
|
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("学号")
|
|
|
|
- @ApiModelProperty("学号")
|
|
|
|
- private String studentId;
|
|
|
|
-
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("学生姓名")
|
|
|
|
- @ApiModelProperty("学生姓名")
|
|
|
|
- private String userName;
|
|
|
|
-
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("班级名称")
|
|
|
|
- @ApiModelProperty("班级名称")
|
|
|
|
- private String className;
|
|
|
|
-
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("职务")
|
|
|
|
- @ApiModelProperty("职务")
|
|
|
|
- private String post;
|
|
|
|
-
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("级别")
|
|
|
|
- @ApiModelProperty("级别")
|
|
|
|
- private String level;
|
|
|
|
-
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("学生任职机构名称")
|
|
|
|
- @ApiModelProperty("学生任职机构名称")
|
|
|
|
- private String cadreDeptIdCN;
|
|
|
|
-
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("手机号")
|
|
|
|
- @ApiModelProperty("手机号")
|
|
|
|
- private String mobile;
|
|
|
|
-
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("专业")
|
|
|
|
- @ApiModelProperty("专业")
|
|
|
|
- private String majorSetName;
|
|
|
|
-
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
|
- @ExcelProperty("年级")
|
|
|
|
- @ApiModelProperty("年级")
|
|
|
|
- private String gradeName;
|
|
|
|
}
|
|
}
|