派生自 projectDept/qhighschool

胡仁荣
2023-09-11 8c1ac419031d562152ec86437215193c20c909b7
src/main/java/com/qxueyou/scc/exercise/model/ExerciseFaultStatistics.java
@@ -35,19 +35,19 @@
   @Column(name="FAULT_STATISTICS_ID", unique=true, nullable=false, length=32)
   private String faultStatisticsId;
   // 做题个数
   // 做题个数
   @Column(name="DO_COUNT")
   private BigInteger doCount;
   // 错误个数
   // 错误个数
   @Column(name="FAULT_COUNT") 
   private BigInteger faultCount;
   
   // 错误率
   // 错误率
   @Column(name="FAULT_RATE", precision=10, scale=2)
   private BigDecimal faultRate;
   
   // 做题时间
   // 做题时间
   @Column(name="EXERCISE_TIME")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date exerciseTime;