| | |
| | | @Column(name="STATUS") |
| | | private String status; |
| | | |
| | | /** 0:未交卷 1:已经交卷 */ |
| | | /** 0:未交卷 1:已经交卷 */ |
| | | public final static String STATUS_NOT_SUBMIT = "0"; |
| | | |
| | | public final static String STATUS_SUBMIT = "1"; |
| | | |
| | | public final static String STATUS_CHECK = "3"; |
| | | |
| | | /** 当前做题最大题号 */ |
| | | /** 当前做题最大题号 */ |
| | | @Column(name="TITLE_MAX_NUMBER", length=32) |
| | | private String titleMaxNumber; |
| | | |
| | |
| | | @OneToMany(fetch = FetchType.LAZY,mappedBy = "exerciseRecord") |
| | | private List<ExerciseItemAnswerU> exerciseItemAnswerU; |
| | | |
| | | //班级名称 |
| | | //班级名称 |
| | | @Transient |
| | | private String className; |
| | | |
| | | //答题用户 |
| | | //答题用户 |
| | | @Formula("(select u.name from user u WHERE u.USER_ID=USER_ID and u.DELETE_FLAG = 0)") |
| | | private String userName; |
| | | |