TC 수정 적용 (CSS, 정렬)

This commit is contained in:
kimre
2022-07-15 20:30:57 +09:00
parent 71415bac5b
commit aa84f4e3d5
6 changed files with 88 additions and 48 deletions

View File

@@ -54,6 +54,7 @@
inner join hubez_common.EZ_CUST_INFO eci
on eci.CUST_SEQ = esi.CUST_SEQ
<include refid="tmpltListCondition"></include>
ORDER BY eat.CHG_DT DESC
LIMIT #{page}, #{pagePerRows}) A,
( SELECT @ROWNUM := #{page} ) AS R
</select>

View File

@@ -47,6 +47,7 @@
on eci.CUST_SEQ = esu.CUST_SEQ
where esu.USER_TP_CD ='01'
<include refid="profileListCondition"></include>
ORDER BY ekc.REG_DT DESC
LIMIT #{page}, #{pagePerRows}) A,
( SELECT @ROWNUM := #{page} ) AS R
</select>

View File

@@ -27,8 +27,8 @@ SELECT
, eci.BIZRNO as bRegNo
, esu.USER_ID
, esu.AUTHCD_080
, case when esi.SUBS_STTUS_CD = '99' then 'N'
else 'Y'
, case when esi.SUBS_STTUS_CD = '99' then '폐기'
else '사용'
end as useYN
, DATE_FORMAT(esi.OPN_DT, '%Y-%m-%d') as regDt
, case when esi.SUBS_STTUS_CD = '99' then DATE_FORMAT(esi.CHG_DT, '%Y-%m-%d')
@@ -45,6 +45,7 @@ SELECT
<include refid="rejectRecvListCondition"></include>
ORDER BY esi.OPN_DT DESC
LIMIT #{page}, #{pagePerRows}) A,
( SELECT @ROWNUM := #{page} ) AS R
</select>