#19560480 추천 비추천 기능개선

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8112 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2011-02-21 01:38:28 +00:00
parent b230d45a71
commit 9b8e32d45b
10 changed files with 223 additions and 23 deletions

View file

@ -0,0 +1,18 @@
<query id="getVotedMemberList" action="select">
<tables>
<table name="document_voted_log" alias="voted_log" />
<table name="member" alias="member" />
</tables>
<columns>
<column name="member.member_srl" alias="member_srl" />
<column name="member.nick_name" alias="nick_name" />
</columns>
<conditions>
<condition operation="equal" column="voted_log.document_srl" var="document_srl" filter="number" notnull="notnull" />
<condition operation="equal" column="voted_log.point" var="point" notnull="notnull" pipe="and" />
<condition operation="equal" column="voted_log.member_srl" default="member.member_srl" pipe="and" />
</conditions>
<navigation>
<index var="sort_index" default="voted_log.regdate" order="desc" />
</navigation>
</query>