-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
416 additions
and
416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<query id="deleteExceptModules" action="delete"> | ||
<tables> | ||
<table name="syndication_except_modules" /> | ||
</tables> | ||
<tables> | ||
<table name="syndication_except_modules" /> | ||
</tables> | ||
</query> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<query id="deleteLog" action="delete"> | ||
<tables> | ||
<table name="syndication_logs" /> | ||
</tables> | ||
<conditions> | ||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" /> | ||
<condition operation="equal" column="document_srl" var="document_srl" filter="number" pipe="and" /> | ||
</conditions> | ||
<tables> | ||
<table name="syndication_logs" /> | ||
</tables> | ||
<conditions> | ||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" /> | ||
<condition operation="equal" column="document_srl" var="document_srl" filter="number" pipe="and" /> | ||
</conditions> | ||
</query> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<query id="getDeletedList" action="select"> | ||
<tables> | ||
<table name="syndication_logs" /> | ||
</tables> | ||
<columns> | ||
<column name="*" /> | ||
</columns> | ||
<conditions> | ||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" /> | ||
<condition operation="equal" column="document_srl" var="document_srl" filter="number" /> | ||
<condition operation="more" column="regdate" var="start_date" filter="number" pipe="and" /> | ||
<condition operation="less" column="regdate" var="end_date" filter="number" pipe="and" /> | ||
</conditions> | ||
<navigation> | ||
<index var="sort_index" default="log_srl" order="desc" /> | ||
<list_count var="list_count" default="100" /> | ||
<page_count var="page_count" default="10" /> | ||
<page var="page" default="1" /> | ||
</navigation> | ||
<tables> | ||
<table name="syndication_logs" /> | ||
</tables> | ||
<columns> | ||
<column name="*" /> | ||
</columns> | ||
<conditions> | ||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" /> | ||
<condition operation="equal" column="document_srl" var="document_srl" filter="number" /> | ||
<condition operation="more" column="regdate" var="start_date" filter="number" pipe="and" /> | ||
<condition operation="less" column="regdate" var="end_date" filter="number" pipe="and" /> | ||
</conditions> | ||
<navigation> | ||
<index var="sort_index" default="log_srl" order="desc" /> | ||
<list_count var="list_count" default="100" /> | ||
<page_count var="page_count" default="10" /> | ||
<page var="page" default="1" /> | ||
</navigation> | ||
</query> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
<query id="getDocumentList" action="select"> | ||
<tables> | ||
<table name="documents" alias="doc" /> | ||
<table name="modules" alias="modules" /> | ||
<table name="syndication_except_modules" alias="except_modules" type="left join"> | ||
<conditions> | ||
<condition operation="equal" column="modules.module_srl" default="except_modules.module_srl" /> | ||
</conditions> | ||
</table> | ||
</tables> | ||
<columns> | ||
<column name="doc.*" /> | ||
<column name="modules.mid" alias="mid" /> | ||
</columns> | ||
<conditions> | ||
<condition operation="equal" column="doc.module_srl" var="module_srl" filter="number" /> | ||
<condition operation="notin" column="doc.module_srl" var="except_module_srls" pipe="and" /> | ||
<condition operation="null" column="except_modules.module_srl" default="1" pipe="and" /> | ||
<condition operation="equal" column="doc.status" default="PUBLIC" pipe="and" /> | ||
<condition operation="equal" column="modules.module_srl" default="doc.module_srl" filter="number" pipe="and" /> | ||
<condition operation="notin" column="modules.module_srl" var="except_modules" filter="numbers" pipe="and" /> | ||
<condition operation="more" column="doc.last_update" var="start_date" filter="number" pipe="and" /> | ||
<condition operation="less" column="doc.last_update" var="end_date" filter="number" pipe="and" /> | ||
</conditions> | ||
<navigation> | ||
<index var="sort_index" default="doc.update_order" order="asc" /> | ||
<list_count var="list_count" default="100" /> | ||
<page_count var="page_count" default="10" /> | ||
<page var="page" default="1" /> | ||
</navigation> | ||
<tables> | ||
<table name="documents" alias="doc" /> | ||
<table name="modules" alias="modules" /> | ||
<table name="syndication_except_modules" alias="except_modules" type="left join"> | ||
<conditions> | ||
<condition operation="equal" column="modules.module_srl" default="except_modules.module_srl" /> | ||
</conditions> | ||
</table> | ||
</tables> | ||
<columns> | ||
<column name="doc.*" /> | ||
<column name="modules.mid" alias="mid" /> | ||
</columns> | ||
<conditions> | ||
<condition operation="equal" column="doc.module_srl" var="module_srl" filter="number" /> | ||
<condition operation="notin" column="doc.module_srl" var="except_module_srls" pipe="and" /> | ||
<condition operation="null" column="except_modules.module_srl" default="1" pipe="and" /> | ||
<condition operation="equal" column="doc.status" default="PUBLIC" pipe="and" /> | ||
<condition operation="equal" column="modules.module_srl" default="doc.module_srl" filter="number" pipe="and" /> | ||
<condition operation="notin" column="modules.module_srl" var="except_modules" filter="numbers" pipe="and" /> | ||
<condition operation="more" column="doc.last_update" var="start_date" filter="number" pipe="and" /> | ||
<condition operation="less" column="doc.last_update" var="end_date" filter="number" pipe="and" /> | ||
</conditions> | ||
<navigation> | ||
<index var="sort_index" default="doc.update_order" order="asc" /> | ||
<list_count var="list_count" default="100" /> | ||
<page_count var="page_count" default="10" /> | ||
<page var="page" default="1" /> | ||
</navigation> | ||
</query> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<query id="getExceptModule" action="select"> | ||
<tables> | ||
<table name="syndication_except_modules" /> | ||
</tables> | ||
<columns> | ||
<column name="count(*)" alias="count" /> | ||
</columns> | ||
<conditions> | ||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull" /> | ||
</conditions> | ||
<tables> | ||
<table name="syndication_except_modules" /> | ||
</tables> | ||
<columns> | ||
<column name="count(*)" alias="count" /> | ||
</columns> | ||
<conditions> | ||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull" /> | ||
</conditions> | ||
</query> |
Oops, something went wrong.