luohairen
2024-11-14 247cb86585a1d1894596ed18a6c93efecb992946
src/main/java/com/ycl/jxkg/domain/other/ExamPaperAnswerUpdate.java
@@ -1,32 +1,14 @@
package com.ycl.jxkg.domain.other;
import lombok.Data;
@Data
public class ExamPaperAnswerUpdate {
    private Integer id;
    private Integer customerScore;
    private Boolean doRight;
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public Integer getCustomerScore() {
        return customerScore;
    }
    public void setCustomerScore(Integer customerScore) {
        this.customerScore = customerScore;
    }
    public Boolean getDoRight() {
        return doRight;
    }
    public void setDoRight(Boolean doRight) {
        this.doRight = doRight;
    }
}