From 8fb0a357affa2e8ca3e2d673f56a217de51f2cc5 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期二, 11 三月 2025 15:59:30 +0800 Subject: [PATCH] 文件大小限制1个G --- business/src/main/resources/mapper/ProjectEngineeringMapper.xml | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/business/src/main/resources/mapper/ProjectEngineeringMapper.xml b/business/src/main/resources/mapper/ProjectEngineeringMapper.xml index 6362fd5..a5cf56d 100644 --- a/business/src/main/resources/mapper/ProjectEngineeringMapper.xml +++ b/business/src/main/resources/mapper/ProjectEngineeringMapper.xml @@ -64,7 +64,6 @@ <select id="getPage" resultMap="BaseResultMap"> SELECT TPE.project_info_id, - TPE.project_type, TPE.investment_amount, TPE.status, @@ -93,6 +92,8 @@ <if test="query.projectType != null and query.projectType != ''"> AND TPE.project_type = #{query.projectType} </if> + ORDER BY TPE.gmt_create DESC + </select> </mapper> -- Gitblit v1.8.0