Logo white

Liu Haoyu / vehicle-simple

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • vehicle-simple
  • ..
  • service
  • RoleServices.java
  • 项目创建, 集成spring-security和jwt
    c83b5b39
    Liu Haoyu authored
    2019-12-16 17:06:20 +0800  
    Browse Code »
RoleServices.java 469 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
package com.objecteye.service;

import com.alibaba.fastjson.JSONObject;

public interface RoleServices {

    /**
     * 查询角色的总页数
     *
     * @return
     */
    int totalNum();

    /**
     * 角色列表分页展示
     *
     * @param currentpage
     * @param pagevolume
     * @return
     */
    JSONObject rolePage(int currentpage, int pagevolume);

    /**
     * 角色下拉展示
     *
     * @return
     */
    JSONObject roleDis();
}