Merge branch 'refs/heads/feature/order' into feature/zijie

This commit is contained in:
2026-02-27 11:02:30 +08:00

View File

@@ -37,7 +37,7 @@ public interface AiSampleMapper extends BaseMapperX<AiSampleDO> {
" AND t.sample_name LIKE CONCAT('%',#{pageReqVO.sampleName},'%')" + " AND t.sample_name LIKE CONCAT('%',#{pageReqVO.sampleName},'%')" +
" </if>" + " </if>" +
"</where>" + "</where>" +
"ORDER BY t.id DESC" + "GROUP BY t.id ORDER BY t.id DESC" +
"</script>") "</script>")
IPage<AiSampleDO> getAiSamplePage(Page<AiSampleDO> objectPage, AiSamplePageReqVO pageReqVO); IPage<AiSampleDO> getAiSamplePage(Page<AiSampleDO> objectPage, AiSamplePageReqVO pageReqVO);
} }