This commit is contained in:
lx
2026-01-15 10:53:54 +08:00
commit 9b2543f7f7
80 changed files with 2995 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.backend.webbackend.domain;
import lombok.Data;
/**
* @TableName exam_paper
*/
@Data
public class ExamPaper {
private Long id;
private String paperName;
private String paperCode;
private String paperDesc;
private Integer totalScore;
}