| | |
| | | import com.qxueyou.scc.base.model.ITrace; |
| | | |
| | | /** |
| | | * 练习纠错 图片表 实体 |
| | | * 练习纠错 图片表 实体 |
| | | * @author alger |
| | | * |
| | | */ |
| | |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键 */ |
| | | /** 主键 */ |
| | | @Id |
| | | @GeneratedValue(generator = "hibernate-uuid") |
| | | @GenericGenerator(name = "hibernate-uuid", strategy = "uuid") |
| | | @Column(name="CORRECTION_IMG_ID", unique=true, nullable=false, length=32) |
| | | private String correctionImgId; |
| | | |
| | | /** 纠错ID */ |
| | | /** 纠错ID */ |
| | | @Column(name="EXERCISE_CORRECTION",nullable=false, length=32) |
| | | @JsonIgnore |
| | | private String exercisecorrectionId; |
| | | |
| | | /** 图片路径 */ |
| | | /** 图片路径 */ |
| | | @Column(name="IMG_PATH",nullable=false, length=32) |
| | | @JsonIgnore |
| | | private String imgPath; |
| | | |
| | | /** 图片顺序 */ |
| | | /** 图片顺序 */ |
| | | @Column(name="IMG_ORDER",nullable=false, length=32) |
| | | @JsonIgnore |
| | | private String imgOrper; |