Compare commits

...

2 Commits

Author SHA1 Message Date
weiweiw b57f1fdb3f Merge remote-tracking branch 'origin/main'
# Conflicts:
#	bonus-modules/bonus-ai/src/main/resources/mapper/ReleaseVersionMapper.xml
2024-11-27 12:51:51 +08:00
weiweiw 807115d370 enhance 2024-11-27 12:51:18 +08:00
2 changed files with 4 additions and 1 deletions

View File

@ -53,7 +53,9 @@ public class DataSetEntity extends BaseEntity {
/**数据集关联的文件id*/
private Long[] fileIds;
/**查询使用*/
private Integer annotatedCount;
private Integer notAnnotatedCount;
private String latestVersionName;
}

View File

@ -34,7 +34,8 @@
<if test="versionName != null and versionName != ''">
AND version_name LIKE CONCAT('%', #{versionName}, '%')
</if>
GROUP BY ap.task_id, atv.create_time
ORDER BY atv.create_time DESC
GROUP BY ap.task_id
</select>
</mapper>