rhymix/modules/comment/queries/getDeclaredLogByCommentSrl.xml
MinSoo Kim 4bbd91bd3c 댓글 신고시 신고 이유를 적을 수 있게 함
- 댓글에도 신고 이유를 적을 수 있다.
- 코드 정리
2016-01-29 01:22:09 +09:00

17 lines
542 B
XML

<query id="getDeclaredLogByCommentSrl" action="select">
<tables>
<table name="comment_declared_log" />
</tables>
<columns>
<column name="*" />
</columns>
<conditions>
<condition operation="equal" column="comment_srl" var="comment_srl" default="0" filter="number" notnull="notnull" />
</conditions>
<navigation>
<index var="sort_index" default="regdate" order="order_type" />
<list_count var="list_count" default="20" />
<page_count var="page_count" default="10" />
<page var="page" default="1" />
</navigation>
</query>