| 12345678910111213141516171819202122232425262728293031323334353637 |
- package com.xjrsoft.module.base.dto;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @title: 班主任异动记录表
- * @Author dzx
- * @Date: 2025-04-24
- * @Version 1.0
- */
- @Data
- public class AddBaseClassTeacherChangeDto implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 班级id(base_class)
- */
- @ApiModelProperty("班级id(base_class)")
- private Long classId;
- /**
- * 异动前班主任(xjr_user)
- */
- @ApiModelProperty("异动前班主任(xjr_user)")
- private Long beforeTeacherId;
- /**
- * 异动后班主任(xjr_user)
- */
- @ApiModelProperty("异动后班主任(xjr_user)")
- private Long afterTeacherId;
- }
|