From dbcc95475a37625a8ba03ee8037df7e0871f7a9d Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 금, 24 12월 2021 16:46:04 +0900 Subject: [PATCH] 이슈타입 리스트 하위 프로젝트꺼까지 다 보이도록 수정 --- src/main/resources/mybatis/query-template/companyField-template.xml | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mybatis/query-template/companyField-template.xml b/src/main/resources/mybatis/query-template/companyField-template.xml index c40ca51..0ee3d09 100644 --- a/src/main/resources/mybatis/query-template/companyField-template.xml +++ b/src/main/resources/mybatis/query-template/companyField-template.xml @@ -10,7 +10,10 @@ cf.manager as manager, cf.tel as tel, cf.email as email, - cf.memo as memo + cf.url as url, + cf.memo as memo, + cf.isp_id as ispId, + cf.hosting_id as hostingId FROM company_field cf WHERE 1=1 @@ -20,6 +23,7 @@ <if test="id != '' and id != null"> AND cf.id like CONCAT('%',#{id},'%') </if> + ORDER BY cf.id DESC <if test="pageSize != '' and pageSize != null"> limit #{pageSize} offset #{page}; </if> -- Gitblit v1.8.0