|
@@ -34,8 +34,9 @@ public class FixPaperScore {
|
|
|
public void start() {
|
|
|
StringBuilder querySql = new StringBuilder()
|
|
|
.append(" select id,paper_struct_id,paper_score")
|
|
|
- .append(" from ec_oe_exam_record_data ")
|
|
|
- .append(" where id > %s ")
|
|
|
+ .append(" from ec_oe_exam_record_data")
|
|
|
+ .append(" where id > %s")
|
|
|
+ .append(" and creation_time > '2023-06-01 00:00:00'")
|
|
|
.append(" order by id asc limit 0,1000");
|
|
|
|
|
|
Long nextId = 0L;
|