12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.xjrsoft.module.student.entity;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @title: 学生报到计划-班级
- * @Author dzx
- * @Date: 2025-01-21
- * @Version 1.0
- */
- @Data
- @TableName("student_report_plan_class_relation")
- @ApiModel(value = "student_report_plan_class_relation", description = "学生报到计划-班级")
- public class StudentReportPlanClassRelation implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @ApiModelProperty("主键")
- @TableId
- private Long id;
- /**
- * 计划id
- */
- @ApiModelProperty("计划id")
- private Long studentReportPlanId;
- /**
- * 班级id
- */
- @ApiModelProperty("班级id")
- private Long classId;
- }
|