UpdateBaseStudentAssessmentInspectionDto.java 467 B

1234567891011121314151617181920212223
  1. package com.xjrsoft.module.student.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. /**
  5. * @title: 学生班级巡查考核
  6. * @Author dzx
  7. * @Date: 2023-11-16
  8. * @Version 1.0
  9. */
  10. @Data
  11. public class UpdateBaseStudentAssessmentInspectionDto extends AddBaseStudentAssessmentInspectionDto {
  12. private static final long serialVersionUID = 1L;
  13. /**
  14. * 主键编号
  15. */
  16. @ApiModelProperty("主键编号")
  17. private Long id;
  18. }