|
@@ -27,7 +27,7 @@ public class D10028Service extends D10028BaseModel implements ExecProcessFlow {
|
|
DThresholdSQLBuilder sb = new DThresholdSQLBuilder();
|
|
DThresholdSQLBuilder sb = new DThresholdSQLBuilder();
|
|
DThresholdSQLBuilder.Criteria sc = sb.createCriteria();
|
|
DThresholdSQLBuilder.Criteria sc = sb.createCriteria();
|
|
sc.andStypeEqualTo(stype);
|
|
sc.andStypeEqualTo(stype);
|
|
-
|
|
|
|
|
|
+ sb.setOrderByClause("id ASC");
|
|
List<DThreshold> dtList =dTMapper.selectByExample(sb);
|
|
List<DThreshold> dtList =dTMapper.selectByExample(sb);
|
|
List<D_D10028_ROWS_RECODE> rows =new ArrayList<>();
|
|
List<D_D10028_ROWS_RECODE> rows =new ArrayList<>();
|
|
for (DThreshold dt :dtList
|
|
for (DThreshold dt :dtList
|
|
@@ -43,6 +43,7 @@ public class D10028Service extends D10028BaseModel implements ExecProcessFlow {
|
|
row.setTemperature(dt.getTemperature());
|
|
row.setTemperature(dt.getTemperature());
|
|
rows.add(row);
|
|
rows.add(row);
|
|
}
|
|
}
|
|
|
|
+
|
|
this.getD_d10028().setRows(rows);
|
|
this.getD_d10028().setRows(rows);
|
|
}
|
|
}
|
|
|
|
|