| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.template.model.evaluate.teacher;
- import com.baomidou.mybatisplus.annotation.*;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @ApiModel(value="SmartEvaluateTeacher对象", description="")
- public class SmartEvaluateTeacher {
- private static final long serialVersionUID = 1L;
- @ApiModelProperty(value = "主键ID")
- @TableId(value = "id", type = IdType.AUTO)
- public Integer id;
- @ApiModelProperty(value = "编号(学号)")
- public String cardNo;
- @ApiModelProperty(value = "用户ID")
- public Integer userId;
- @ApiModelProperty(value = "姓名")
- public String name;
- @ApiModelProperty(value = "学期Id")
- public Integer termId;
- @ApiModelProperty(value = "学期")
- public String term;
- @ApiModelProperty(value = "年级Id")
- public Integer gradeId;
- @ApiModelProperty(value = "年级")
- public String gradeName;
- @ApiModelProperty(value = "班级Id")
- public Integer classId;
- @ApiModelProperty(value = "班级")
- public String className;
- @ApiModelProperty(value = "评分详情")
- public String evaluateDetail;
- @ApiModelProperty(value = "总分")
- public Double totalScore;
- @ApiModelProperty(value = "扣分")
- public Double lowingScore;
- @ApiModelProperty(value = "逻辑删除 未删除:0;删除:1")
- @TableField(fill = FieldFill.INSERT)
- @TableLogic
- public Integer deleted;
- }
|