xiangpei
2024-06-28 abd1516fa39da87f70d4f69dc4ec35f8f81946f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ycl.jxkg.domain.other;
 
import lombok.Data;
 
@Data
public class ExamPaperAnswerUpdate {
 
    private Integer id;
 
    private Integer customerScore;
 
    private Boolean doRight;
 
}