12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.xjrsoft.module.student.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.time.LocalTime;
- import java.time.LocalDateTime;
- import java.math.BigDecimal;
- import java.util.List;
- import java.util.Date;
- /**
- * @title: 学生班级巡查考核-关联班级表单出参
- * @Author fanxp
- * @Date: 2023-11-16
- * @Version 1.0
- */
- @Data
- public class BaseStudentAssessmentClassRelationVo {
- /**
- * 主键编号
- */
- @ApiModelProperty("主键编号")
- private Long id;
- /**
- * 班级编号id
- */
- @ApiModelProperty("班级编号id")
- private Long classId;
- /**
- * 学生班级巡查考核id
- */
- @ApiModelProperty("学生班级巡查考核id")
- private Long baseStudentAssessmentInspectionId;
- /**
- * 序号
- */
- @ApiModelProperty("序号")
- private Integer sortCode;
- /**
- * 班主任姓名
- */
- @ApiModelProperty("班主任姓名")
- private String teacherName;
- }
|