拉取考试分数

This commit is contained in:
bianyadong
2024-05-08 15:16:20 +08:00
parent a2e999444a
commit 58a05fd8cf
11 changed files with 270 additions and 9 deletions

View File

@@ -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;
}