liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package jnpf.tmsEntity.record;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class TmsRecordParticipantForm {
 
    @Schema(description = "主键")
    private String id;
 
    @Schema(description = "用户ID")
    private String userId;
 
    @Schema(description = "姓名")
    private String userName;
 
    @Schema(description = "部门")
    private String deptName;
 
    @Schema(description = "签到日期")
    private String signDate;
 
    @Schema(description = "考试成绩")
    private BigDecimal examScore;
 
    @Schema(description = "是否合格 1/0")
    private String passFlag;
}