대댓글 수정

This commit is contained in:
dyhj625 2025-02-20 10:47:15 +09:00
parent b4c49fbe58
commit 1e1b313a6e
2 changed files with 1 additions and 2 deletions

View File

@ -90,7 +90,6 @@ public interface localbordMapper {
MapDto selectCountBoardReactions(Long boardId); MapDto selectCountBoardReactions(Long boardId);
// 댓글 좋아요/싫어요 개수 // 댓글 좋아요/싫어요 개수
@ResultType(MapDto.class)
MapDto selectCountCommentReactions(Long commentId); MapDto selectCountCommentReactions(Long commentId);
// 첨부파일 가져오기 // 첨부파일 가져오기

View File

@ -152,7 +152,7 @@
m.MEMBERNAM AS author m.MEMBERNAM AS author
FROM localcomt c FROM localcomt c
LEFT JOIN netmember m ON c.MEMBERSEQ = m.MEMBERSEQ LEFT JOIN netmember m ON c.MEMBERSEQ = m.MEMBERSEQ
WHERE LOCBRDSEQ = #{LOCBRDSEQ} and LOCCMTPNT != 1 WHERE LOCCMTPNT = #{LOCCMTPNT} and LOCCMTPNT != 1
ORDER BY LOCCMTPNT ASC, LOCCMTUDT ASC ORDER BY LOCCMTPNT ASC, LOCCMTUDT ASC
</select> </select>