mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 00:32:15 +09:00
Fix #2035 add statusList argument to most comment select queries
This commit is contained in:
parent
9d50286445
commit
4bd49c29bb
14 changed files with 39 additions and 27 deletions
|
|
@ -1,14 +1,15 @@
|
|||
<query id="getAllComments" action="select">
|
||||
<tables>
|
||||
<table name="comments" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="comment_srl" />
|
||||
<column name="module_srl" />
|
||||
<tables>
|
||||
<table name="comments" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="comment_srl" />
|
||||
<column name="module_srl" />
|
||||
<column name="member_srl" />
|
||||
<column name="document_srl" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="in" column="document_srl" var="document_srl" notnull="notnull" />
|
||||
</conditions>
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="in" column="document_srl" var="document_srl" notnull="notnull" />
|
||||
<condition operation="in" column="status" var="statusList" pipe="and" />
|
||||
</conditions>
|
||||
</query>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue