完善市场法规库清单删除

This commit is contained in:
梁琦涛
2024-07-05 09:39:12 +08:00
parent 51e1d9cc6d
commit 593c38cb28
2 changed files with 2 additions and 2 deletions
@@ -103,7 +103,7 @@ public class MarketStandardController {
return Result.error("请选择数据!");
}
this.marketStandardService.deleteById(map.get("id"));
return Result.OK("批量删除成功!");
return Result.OK("删除成功!");
}
/**
@@ -37,7 +37,7 @@
from laws_market_standard ms
JOIN (
SELECT manifest_no as manifest_no_max, MAX(manifest_version) AS manifest_version_max
FROM laws_market_standard
FROM laws_market_standard where del_flag = 0
GROUP BY manifest_no
) ms1 on ms1.manifest_version_max = ms.manifest_version and ms1.manifest_no_max = ms.manifest_no
left join sys_user as u on u.id = ms.author