Commit 365810d4 by zhangdaihao

字典排序问题合并

parent ed831350
## ide
**/.idea
*.iml
## backend
**/target
**/logs
## front
**/*.lock
......@@ -15,6 +15,6 @@ import java.util.List;
* @since 2018-12-28
*/
public interface SysDictItemMapper extends BaseMapper<SysDictItem> {
@Select("SELECT * FROM SYS_DICT_ITEM WHERE DICT_ID = #{mainId}")
@Select("SELECT * FROM sys_dict_item WHERE DICT_ID = #{mainId} order by sort_order asc, item_value asc")
public List<SysDictItem> selectItemsByMainId(String mainId);
}
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