修改问题

hz_1122
shenyi.deng 2024-12-06 10:20:30 +08:00
parent 42416aa6a1
commit 29bd9179d8
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ public class ScriptStatusStatistic {
return this.statusSet; return this.statusSet;
} }
if (StringUtils.isNotBlank(this.statusString)) { if (StringUtils.isNotBlank(this.statusString)) {
String[] split = this.status.split(","); String[] split = this.statusString.split(",");
statusSet = CollUtil.newHashSet(split); statusSet = CollUtil.newHashSet(split);
return statusSet; return statusSet;
} }

View File

@ -383,7 +383,7 @@
count(*) as total count(*) as total
FROM <include refid="Table_Name" /> FROM <include refid="Table_Name" />
WHERE WHERE
batch_id = #{task.batchId,jdbcType=VARCHAR} batch_id = #{batchId,jdbcType=VARCHAR}
GROUP BY script_id GROUP BY script_id
</select> </select>