mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
Admin용 mid 목록리스트 가져오는 함수추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7320 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e81e683027
commit
ea0e127feb
2 changed files with 34 additions and 0 deletions
23
modules/module/queries/getModuleMidList.xml
Normal file
23
modules/module/queries/getModuleMidList.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<query id="getModuleMidList" action="select">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="module" notnull="notnull" />
|
||||
<condition operation="in" column="site_srl" var="site_srl" default="0" notnull="notnull" pipe="and" />
|
||||
<condition operation="in" column="module_srl" var="module_srl" pipe="and" />
|
||||
<group pipe="and">
|
||||
<condition operation="like" column="mid" var="s_mid" pipe="or" />
|
||||
<condition operation="like" column="title" var="s_title" pipe="or" />
|
||||
</group>
|
||||
</conditions>
|
||||
<navigation>
|
||||
<index var="sort_index" default="module_srl" order="desc" />
|
||||
<list_count var="list_count" default="20" />
|
||||
<page_count var="page_count" default="10" />
|
||||
<page var="page" default="1" />
|
||||
</navigation>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue