Commit 40a29f11 by Daichi Sato

関連資料(共通)でジャンル名順に並ぶように修正

parent 43d2735d
......@@ -676,7 +676,7 @@ public class ContentDao extends AbstractDao {
sql.append(" INNER JOIN m_category AS mc ");
sql.append(" ON rcc.category_relation_id = mc.category_relation_id ");
sql.append(" WHERE tc.common_content_flg = 1");
sql.append(" ORDER BY mc.category_id, tc.content_id DESC ");
sql.append(" ORDER BY mc.category_name, mc.category_id, tc.content_id DESC ");
return rawQueryGetDtoList(sql.toString(), null, ContentDto.class);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment