拉取考试分数
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package com.cool.store.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author byd
|
||||
* @date 2024-05-08 14:07
|
||||
*/
|
||||
@Data
|
||||
public class StaffExamInfoDTO {
|
||||
|
||||
/**
|
||||
* 考试名称
|
||||
*/
|
||||
private String examName;
|
||||
/**
|
||||
* 姓名
|
||||
*/
|
||||
private String staffName;
|
||||
/**
|
||||
* 部门
|
||||
*/
|
||||
private String deptPath;
|
||||
/**
|
||||
* 员工编号
|
||||
*/
|
||||
private String staffNumber;
|
||||
/**
|
||||
* 考试结果
|
||||
*/
|
||||
private String examResult;
|
||||
/**
|
||||
* 考试分数
|
||||
*/
|
||||
private String examScore;
|
||||
}
|
||||
Reference in New Issue
Block a user