From 0955929c20645fd95d4bb968a7a70c9d27be5673 Mon Sep 17 00:00:00 2001 From: jhjang <jhjang@maprex.co.kr> Date: 목, 23 12월 2021 14:33:00 +0900 Subject: [PATCH] - api 문서 페이지에서 토큰 표시 되도록 수정 --- 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