커스텀 알림의 타입리스트를 확인하고 해당 알림을 삭제할 수 있도록 개선

This commit is contained in:
BJRambo 2017-05-02 02:50:32 +09:00
parent de7213bb22
commit f702b6c7d6
9 changed files with 138 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<query id="deleteNotifyType" action="delete">
<tables>
<table name="ncenterlite_notify_type" />
</tables>
<conditions>
<condition operation="equal" column="notify_type_srl" var="notify_type_srl" filter="number" notnull="notnull" />
</conditions>
</query>

View file

@ -0,0 +1,15 @@
<query id="getNotifyTypeAdminList" action="select">
<tables>
<table name="ncenterlite_notify_type" />
</tables>
<columns>
<column name="*" />
</columns>
<navigation>
<index default="notify_type_srl" var="list_order" order="desc" />
<list_count var="list_count" default="20" />
<page_count var="page_count" default="10" />
<page var="page" default="1" />
</navigation>
</query>