派生自 projectDept/qhighschool

yn147
2023-07-20 a7ad52353293223b66d041b5baca8661340ac9a9
src/main/java/com/qxueyou/scc/exercise/model/ExerciseCorrectionImg.java
@@ -16,7 +16,7 @@
import com.qxueyou.scc.base.model.ITrace;
/**
 * 练习纠错 图片表  实体
 * 练习纠错 图片表  实体
 * @author alger
 *
 */
@@ -29,24 +29,24 @@
    */
   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;