luohairen
2024-10-29 b005f8a8669cdea0f1738172d7c13da57a1237e2
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;
 
}