修改综合评价达标量不能导出
This commit is contained in:
@@ -8,7 +8,7 @@ import lombok.Data;
|
||||
|
||||
/**
|
||||
* 辅导员综合评价状态对象 teacher_evaluation_status
|
||||
*
|
||||
*
|
||||
* @author srs
|
||||
* @date 2024-01-20
|
||||
*/
|
||||
@@ -53,19 +53,26 @@ public class TeacherEvaluationStatus extends BaseEntity {
|
||||
private String stuYearName;
|
||||
|
||||
/** 是否完成综合测评 */
|
||||
@Excel(name = "是否完成综合测评")
|
||||
private Boolean isCompleted;
|
||||
|
||||
/** 是否完成综合测评 */
|
||||
@Excel(name = "是否完成综合测评")
|
||||
private String completed;
|
||||
|
||||
/** 待办事项数量 */
|
||||
@Excel(name = "待办事项数量")
|
||||
@TableField(exist = false)
|
||||
private Integer todoCount;
|
||||
|
||||
/** 成绩是否已导入 */
|
||||
@Excel(name = "成绩是否已导入")
|
||||
@TableField(exist = false)
|
||||
private Boolean scoreImported;
|
||||
|
||||
/** 成绩是否已导入 */
|
||||
@Excel(name = "成绩是否已导入")
|
||||
@TableField(exist = false)
|
||||
private String isScoreImported;
|
||||
|
||||
/** 备注 */
|
||||
@Excel(name = "备注")
|
||||
private String remarks;
|
||||
@@ -177,4 +184,4 @@ public class TeacherEvaluationStatus extends BaseEntity {
|
||||
public void setLastUpdateTime(String lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user