SYMBOL INDEX (354 symbols across 78 files) FILE: hacker-db/walker.sql type `tb_admin` (line 23) | CREATE TABLE `tb_admin` ( type `tb_admin_role` (line 46) | CREATE TABLE `tb_admin_role` ( type `tb_pay` (line 60) | CREATE TABLE `tb_pay` ( type `tb_permission` (line 80) | CREATE TABLE `tb_permission` ( type `tb_role` (line 101) | CREATE TABLE `tb_role` ( type `tb_role_permission` (line 118) | CREATE TABLE `tb_role_permission` ( FILE: hacker-framework-common/src/main/java/hacker/framework/common/annotation/Constants.java class Constants (line 10) | public class Constants { FILE: hacker-framework-common/src/main/java/hacker/framework/common/annotation/ResponseCode.java type ResponseCode (line 10) | public enum ResponseCode { method ResponseCode (line 18) | ResponseCode(String status, String message) { method getStatus (line 23) | public String getStatus() { method setStatus (line 27) | public void setStatus(String status) { method getMessage (line 31) | public String getMessage() { method setMessage (line 35) | public void setMessage(String message) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/aspect/DistributedLockAspect.java class DistributedLockAspect (line 26) | @Aspect method around (line 41) | @Around(value = "@annotation(hacker.framework.common.annotation.Distri... method getFullMethodName (line 104) | private static String getFullMethodName(Method method) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/aspect/GlobalExceptionHandler.java class GlobalExceptionHandler (line 28) | @Slf4j method exceptionHandler (line 32) | @ExceptionHandler(Exception.class) method doGlobalExceptionHandler (line 46) | public static ResultBean doGlobalExceptionHandler(Throwable e) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/aspect/GlobalLogHandler.java class GlobalLogHandler (line 29) | @Aspect method doAround (line 36) | @Around(value = "execution(* hacker.*.manage.controller..*.*(..))") method log (line 58) | private void log(ProceedingJoinPoint pjp) { method getIpAddress (line 86) | public static String getIpAddress(HttpServletRequest request) { method ipIsBlank (line 134) | private static boolean ipIsBlank(String ip) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/aspect/GlobalVariable.java class GlobalVariable (line 16) | @Component FILE: hacker-framework-common/src/main/java/hacker/framework/common/aspect/LimiterAspect.java class LimiterAspect (line 22) | @Aspect method around (line 38) | @Around("@annotation(hacker.framework.common.annotation.Limiter)") method doLimiter (line 74) | private boolean doLimiter(String route, String userHash, Integer limit... FILE: hacker-framework-common/src/main/java/hacker/framework/common/aspect/LockUtils.java class LockUtils (line 18) | @Component method lock (line 31) | public boolean lock(String key, String randomVal, Long timeOut) { method releaseLock (line 52) | public boolean releaseLock(String key, String val) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/aspect/SqlTimeInterceptor.java class SqlTimeInterceptor (line 26) | @Intercepts({@Signature(type = Executor.class, method = "update", args =... method intercept (line 35) | @Override method getSql (line 58) | public static String getSql(Configuration configuration, BoundSql boun... method getParameterValue (line 70) | private static String getParameterValue(Object obj) { method showSql (line 88) | public static String showSql(Configuration configuration, BoundSql bou... method plugin (line 114) | @Override method setProperties (line 119) | @Override FILE: hacker-framework-common/src/main/java/hacker/framework/common/consts/CommonConst.java class CommonConst (line 30) | public class CommonConst { FILE: hacker-framework-common/src/main/java/hacker/framework/common/enums/BaseExceptionEnum.java type BaseExceptionEnum (line 12) | public enum BaseExceptionEnum { method BaseExceptionEnum (line 56) | BaseExceptionEnum(int code, String message) { method getCode (line 61) | public int getCode() { method setCode (line 65) | public void setCode(int code) { method getMessage (line 69) | public String getMessage() { method setMessage (line 73) | public void setMessage(String message) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/exception/AppException.java class AppException (line 11) | public class AppException extends Exception { method AppException (line 13) | public AppException() { method AppException (line 17) | public AppException(String message) { method AppException (line 21) | public AppException(String message, Throwable cause) { method AppException (line 25) | public AppException(Throwable cause) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/exception/JxnhException.java class JxnhException (line 14) | public class JxnhException extends RuntimeException { method JxnhException (line 21) | public JxnhException() { method JxnhException (line 25) | public JxnhException(Throwable cause) { method JxnhException (line 29) | public JxnhException(String msg) { method JxnhException (line 34) | public JxnhException(int code, String msg) { method JxnhException (line 40) | public JxnhException(BaseExceptionEnum exEnum) { method getCode (line 45) | public int getCode() { method getMsg (line 49) | public String getMsg() { FILE: hacker-framework-common/src/main/java/hacker/framework/common/object/BaseConditionVo.java class BaseConditionVo (line 17) | @Data method getPageSize (line 33) | public int getPageSize() { method getPageStart (line 37) | public int getPageStart() { FILE: hacker-framework-common/src/main/java/hacker/framework/common/object/PageResultVo.java class PageResultVo (line 16) | @Data method PageResultVo (line 22) | public PageResultVo(Long total, List rows) { method PageResultVo (line 27) | public PageResultVo() { FILE: hacker-framework-common/src/main/java/hacker/framework/common/object/ResponseVo.java class ResponseVo (line 20) | @Data method ResponseVo (line 27) | public ResponseVo(Integer status, String message, T data) { method ResponseVo (line 33) | public ResponseVo(BaseExceptionEnum status, T data) { method toJson (line 37) | public String toJson() { FILE: hacker-framework-common/src/main/java/hacker/framework/common/object/ResultUtil.java class ResultUtil (line 16) | public class ResultUtil { method view (line 20) | public static ModelAndView view(String view) { method view (line 24) | public static ModelAndView view(String view, Map model) { method redirect (line 28) | public static ModelAndView redirect(String view) { method vo (line 35) | public static ResponseVo vo(int code, String message, Object data) { method error (line 43) | public static ResponseVo error(int code, String message) { method error (line 47) | public static ResponseVo error(BaseExceptionEnum statusEnum) { method error (line 51) | public static ResponseVo error(String message) { method success (line 58) | public static ResponseVo success(String message, Object data) { method success (line 62) | public static ResponseVo success(String message) { method success (line 66) | public static ResponseVo success(BaseExceptionEnum statusEnum) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/request/BaseCode.java type BaseCode (line 12) | @Getter method BaseCode (line 23) | BaseCode(String code) { method main (line 29) | public static void main(String[] args) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/request/BaseResult.java class BaseResult (line 14) | @Getter method BaseResult (line 21) | public BaseResult() { method BaseResult (line 24) | public BaseResult(String code, String msg, Object data) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/request/ResultBean.java class ResultBean (line 16) | public class ResultBean implements Serializable { method getSerialVersionUID (line 34) | public static long getSerialVersionUID() { method getData (line 38) | public T getData() { method setData (line 42) | public void setData(T data) { method getData1 (line 46) | public T getData1() { method setData1 (line 50) | public void setData1(T data1) { method getSuccess (line 55) | public Boolean getSuccess() { method setSuccess (line 59) | public void setSuccess(Boolean success) { method getCode (line 63) | public int getCode() { method setCode (line 67) | public void setCode(int code) { method getMsg (line 71) | public String getMsg() { method setMsg (line 75) | public void setMsg(String msg) { method getTotalNum (line 79) | public Integer getTotalNum() { method setTotalNum (line 83) | public void setTotalNum(Integer totalNum) { method getPageIndex (line 87) | public Integer getPageIndex() { method setPageIndex (line 91) | public void setPageIndex(Integer pageIndex) { method getPageSize (line 95) | public Integer getPageSize() { method setPageSize (line 99) | public void setPageSize(Integer pageSize) { method getTotalPage (line 103) | public Integer getTotalPage() { method setTotalPage (line 107) | public void setTotalPage(Integer totalPage) { method ofSuccess (line 126) | public static ResultBean ofSuccess() { method ofSuccess (line 130) | public static ResultBean ofSuccess(T data) { method ofSuccess (line 134) | public static ResultBean ofSuccess(T data, String msg) { method ofSuccess (line 138) | public static ResultBean ofSuccess(T data, T date1, String msg) { method ofSuccess (line 143) | public static ResultBean ofSuccess(T data, BaseExceptionEnum ba... method ofSuccess (line 147) | public static ResultBean ofSuccess(T data, Integer totalNum, In... method ofSuccess (line 151) | public static ResultBean ofSuccess(T data, Integer totalNum, In... method of (line 155) | public static ResultBean of(T data, boolean success, BaseExcept... method of (line 160) | public static ResultBean of(T data, boolean success, BaseException... method of (line 168) | public static ResultBean of(T data, boolean success, Integer code,... method of (line 181) | public static ResultBean of(T data, T data1, boolean success, Inte... method of (line 194) | public static ResultBean of(T data, boolean success, BaseExcept... method ofError (line 216) | public static ResultBean ofError(BaseExceptionEnum baseExceptionEnum) { method ofError (line 220) | public static ResultBean ofError(String msg) { method ofError (line 224) | public static ResultBean ofError(int code, String msg) { FILE: hacker-framework-common/src/main/java/hacker/framework/common/request/ResultInfo.java class ResultInfo (line 17) | @Data FILE: hacker-framework-common/src/main/java/hacker/framework/common/request/ResultInfoUtil.java class ResultInfoUtil (line 14) | public class ResultInfoUtil { method success (line 21) | public static ResultInfo success() { method success (line 31) | public static ResultInfo success(Object data) { method error (line 36) | public static ResultInfo error(String status, String message) { method success (line 51) | public static ResultInfo success(ResponseCode message, Object object) { method error (line 60) | public static ResultInfo error() { method error (line 65) | public static ResultInfo error(Object data) { method error (line 68) | public static ResultInfo error(ResponseCode message, Object object) { FILE: hacker-framework-model/src/main/java/hacker/framework/model/Cto/AdminRoles.java class AdminRoles (line 17) | @Getter method AdminRoles (line 24) | public AdminRoles() { method AdminRoles (line 27) | public AdminRoles(Integer uid, List roles) { method AdminRoles (line 32) | public AdminRoles(Integer uid, Integer role) { method getResult (line 37) | public List getResult(){ FILE: hacker-framework-model/src/main/java/hacker/framework/model/Cto/RolePermissions.java class RolePermissions (line 17) | @Getter method RolePermissions (line 26) | public RolePermissions() { method RolePermissions (line 29) | public RolePermissions(Integer rid, List pids) { method RolePermissions (line 34) | public RolePermissions(Integer rid, Integer pid) { method getObj (line 39) | public List getObj() { FILE: hacker-framework-model/src/main/java/hacker/framework/model/entity/Admin.java class Admin (line 21) | @Data method toString (line 48) | @Override FILE: hacker-framework-model/src/main/java/hacker/framework/model/entity/Pay.java class Pay (line 15) | @Data method toString (line 37) | @Override FILE: hacker-framework-model/src/main/java/hacker/framework/model/entity/Permission.java class Permission (line 19) | @Data method toString (line 36) | @Override FILE: hacker-framework-model/src/main/java/hacker/framework/model/entity/Role.java class Role (line 19) | @Data method toString (line 31) | @Override FILE: hacker-framework-util/src/main/java/hacker/framework/util/ApplicationContextUtil.java class ApplicationContextUtil (line 15) | @Component method setApplicationContext (line 20) | @Override method getApplicationContext (line 26) | public ApplicationContext getApplicationContext(){ method ApplicationContextUtil (line 30) | private ApplicationContextUtil() { } FILE: hacker-framework-util/src/main/java/hacker/framework/util/CommontUtil.java class CommontUtil (line 16) | public class CommontUtil { method getIpAddress (line 23) | public static String getIpAddress(HttpServletRequest request) { method getUUID (line 46) | public static String getUUID(){ method getTimeStampTime (line 54) | public static Timestamp getTimeStampTime(){ FILE: hacker-framework-util/src/main/java/hacker/framework/util/FileUtil.java class FileUtil (line 11) | public class FileUtil { method isFileAllowed (line 16) | public static boolean isFileAllowed(String fileName) { FILE: hacker-framework-util/src/main/java/hacker/framework/util/LuKeIp.java class LuKeIp (line 15) | public class LuKeIp { method getIpAddress (line 20) | public static String getIpAddress(HttpServletRequest request) { FILE: hacker-framework-util/src/main/java/hacker/framework/util/MD5Util.java class MD5Util (line 15) | public class MD5Util { method to_32_MD5 (line 23) | public static final String to_32_MD5(String s) { method to_16_MD5 (line 55) | public static final String to_16_MD5(String s){ method md5To16 (line 69) | public static final String md5To16(String s){ FILE: hacker-framework-util/src/main/java/hacker/framework/util/OrderUtil.java class OrderUtil (line 12) | public class OrderUtil { method toCode (line 45) | private static String toCode(Integer id) { method getDateTime (line 57) | private static String getDateTime() { method getRandom (line 67) | private static long getRandom(long n) { method getCode (line 82) | private static synchronized String getCode(Integer userId) { method getOrderCode (line 92) | public static String getOrderCode(Integer userId) { method getReturnCode (line 101) | public static String getReturnCode(Integer userId) { method getRefundCode (line 110) | public static String getRefundCode(Integer userId) { method getAgainCode (line 119) | public static String getAgainCode(Integer userId) { FILE: hacker-framework-util/src/main/java/hacker/framework/util/SHA256.java class SHA256 (line 15) | public class SHA256 { method SHA256Encode (line 23) | public static String SHA256Encode(String str){ method main (line 38) | public static void main(String[] args) { FILE: hacker-framework-util/src/main/java/hacker/framework/util/Snowflake.java class Snowflake (line 16) | public class Snowflake { method nextId (line 93) | public synchronized long nextId() { method Snowflake (line 127) | public Snowflake(long datacenterId, long workerId) { method getWaitCount (line 149) | public long getWaitCount() { method waitNextMillis (line 159) | protected long waitNextMillis(long currTimestamp) { method timestampGen (line 172) | protected long timestampGen() { method toString (line 179) | @Override method getEpoch (line 186) | public long getEpoch() { method parseId (line 199) | public long[] parseId(long id) { method formatId (line 216) | public String formatId(long id) { method diode (line 233) | private long diode(long offset, long length) { method main (line 239) | public static void main(String[] args) { FILE: hacker-framework-util/src/main/java/hacker/framework/util/SnowflakeIdWorker.java class SnowflakeIdWorker (line 15) | public class SnowflakeIdWorker { method SnowflakeIdWorker (line 66) | public SnowflakeIdWorker(long workerId, long datacenterId) { method nextId (line 82) | public synchronized long nextId() { method tilNextMillis (line 120) | protected long tilNextMillis(long lastTimestamp) { method timeGen (line 132) | protected long timeGen() { method main (line 140) | public static void main(String[] args) { FILE: hacker-framework-util/src/main/java/hacker/framework/util/SslUtils.java class SslUtils (line 10) | public class SslUtils { method trustAllHttpsCertificates (line 13) | private static void trustAllHttpsCertificates() throws Exception { class miTM (line 22) | static class miTM implements TrustManager,X509TrustManager { method getAcceptedIssuers (line 23) | @Override method isServerTrusted (line 28) | public boolean isServerTrusted(X509Certificate[] certs) { method isClientTrusted (line 32) | public boolean isClientTrusted(X509Certificate[] certs) { method checkServerTrusted (line 36) | @Override method checkClientTrusted (line 42) | @Override method ignoreSsl (line 52) | public static void ignoreSsl() throws Exception{ FILE: hacker-framework-util/src/main/java/hacker/framework/util/StringUtil.java class StringUtil (line 7) | public class StringUtil { method isEmpty (line 13) | public static final boolean isEmpty(String source){ method isNotEmpty (line 23) | public static final boolean isNotEmpty(String source){ method isNull (line 32) | public static final boolean isNull(String source){ method isNotNull (line 41) | public static final boolean isNotNull(String source){ method getKey (line 49) | public static final String getKey(){ method toUnicodeEx (line 54) | public static String toUnicodeEx(String str){ FILE: hacker-framework-util/src/main/java/hacker/framework/util/TestUtil.java class TestUtil (line 20) | public class TestUtil { method doubleRide100 (line 26) | public static Double doubleRide100(double d) { method formatUrlMap (line 45) | public static String formatUrlMap(Map paraMap, boolean... method getMD5 (line 92) | public static String getMD5(String str){ method sendGet (line 121) | public static String sendGet(String GET_URL) { method sendPost (line 157) | public static String sendPost(String url, String param,String charset) { method getNowDate (line 219) | public static Date getNowDate() throws ParseException { method random (line 231) | public static int random() { method autoGenericCode (line 244) | private static String autoGenericCode(String code, int num) { method StrToMap (line 260) | @SuppressWarnings("rawtypes") FILE: hacker-framework-util/src/main/java/hacker/framework/util/TokenProccessor.java class TokenProccessor (line 17) | public class TokenProccessor { method TokenProccessor (line 19) | private TokenProccessor(){} method getInstance (line 22) | public static TokenProccessor getInstance() { method makeToken (line 30) | public String makeToken() { FILE: hacker-govern-center/src/main/java/hacker/framework/center/EurekaApplication.java class EurekaApplication (line 7) | @EnableEurekaServer // 标识此工程是一个EurekaServer method main (line 11) | public static void main(String[] args) { FILE: hacker-govern-gateway/src/main/java/hacker/govern/gateway/ZuulAppApplication.java class ZuulAppApplication (line 7) | @SpringBootApplication method main (line 12) | public static void main(String[] args) { FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/App.java class App (line 21) | @SpringBootApplication method main (line 33) | public static void main(String[] args) { method setApplicationContext (line 43) | @Override method sqlSessionFactory (line 49) | @Bean FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/AppInterceptor.java class AppInterceptor (line 20) | @Slf4j method preHandle (line 23) | @Override method postHandle (line 40) | @Override method afterCompletion (line 46) | @Override FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/AuthInterceptor.java class AuthInterceptor (line 19) | @Component method preHandle (line 23) | @Override FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/CorsConfig.java class CorsConfig (line 17) | @Configuration method corsFilter (line 20) | @Bean FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/MvcConfig.java class MvcConfig (line 17) | @Configuration method addViewControllers (line 24) | @Override method addInterceptors (line 33) | @Override FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/ShiroConfig.java class ShiroConfig (line 23) | @Configuration method shirFilter (line 29) | @Bean method securityManager (line 57) | @Bean method ehCacheManager (line 68) | @Bean method advisorAutoProxyCreator (line 78) | @Bean method authorizationAttributeSourceAdvisor (line 85) | @Bean FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/ShiroRealm.java class ShiroRealm (line 30) | @Component method doGetAuthorizationInfo (line 46) | @Override method doGetAuthenticationInfo (line 67) | @Override FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/Swagger2Configuration.java class Swagger2Configuration (line 20) | @Configuration method createRestApi (line 24) | @Bean method apiInfo (line 35) | private ApiInfo apiInfo() { FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/WebSocketConfig.java class WebSocketConfig (line 15) | @Configuration method serverEndpointExporter (line 18) | @Bean FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/config/WebSocketServer.java class WebSocketServer (line 20) | @Slf4j method onOpen (line 29) | @OnOpen method onClose (line 43) | @OnClose method onMessage (line 54) | @OnMessage method sendMessage (line 65) | public void sendMessage(String message) { method onError (line 74) | @OnError method addOnlineCount (line 84) | public int addOnlineCount(){ method addSession (line 91) | public void addSession(){ FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/AdminController.java class AdminController (line 26) | @Slf4j method createAdminUser (line 45) | @PostMapping("/addUser") method deleteById (line 73) | @PostMapping("/deleteById") method setRoles (line 97) | @PostMapping("/allotRole") FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/ErrorController.java class ErrorController (line 22) | @Api(value = "错误", description = "错误页面处理") method error1 (line 32) | @ApiOperation( FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/LiuStaticTest.java class LiuStaticTest (line 9) | public class LiuStaticTest { method main (line 11) | public static void main(String[] args) { method LiuStaticTest (line 41) | LiuStaticTest() { method staticFunction (line 48) | public static void staticFunction() { FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/LoginController.java class LoginController (line 30) | @Slf4j method dr (line 50) | @ApiOperation(value = "首页", notes = "首页") method login (line 63) | @PostMapping("/login") method logout (line 101) | @GetMapping("/logout") method findByName (line 122) | @GetMapping("/findByName") FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/NotifyController.java class NotifyController (line 27) | @RestController method callback (line 53) | @ResponseBody FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/PayAliController.java class PayAliController (line 19) | @RestController method Pay (line 35) | @PostMapping(value = "/pay",consumes = "application/json") method findById (line 54) | @GetMapping("/findOne") FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/PayQuickController.java class PayQuickController (line 29) | @RestController method Pay (line 58) | @PostMapping(value = "/payLog",consumes = MediaType.APPLICATION_JSON_U... FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/PayWxController.java class PayWxController (line 28) | @RestController method Pay (line 54) | @PostMapping(value = "/payLog",consumes = MediaType.APPLICATION_JSON_U... FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/QiniuController.java class QiniuController (line 21) | @RestController method uploadImage (line 28) | @RequestMapping(value = "/upload", method = RequestMethod.POST) FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/controller/RoleController.java class RoleController (line 24) | @Slf4j method createRole (line 34) | @PostMapping("/addRole") method deleteById (line 51) | @PostMapping("/deleteRoleById") method updateRole (line 66) | @PostMapping("/updateRole") method queryPermissionRole (line 83) | @GetMapping("/listPermission") method allotPermission (line 100) | @PostMapping("/allotPermission") FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/mapper/AdminMapper.java type AdminMapper (line 18) | @Repository method findByName (line 23) | Admin findByName(String username); method updateUserStatus (line 26) | int updateUserStatus(Admin user); method deleteAdminRole (line 29) | void deleteAdminRole(Integer id); method setRoles (line 32) | void setRoles(List obj); FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/mapper/PayMapper.java type PayMapper (line 17) | @Mapper method selectByPrimaryKey (line 22) | Pay selectByPrimaryKey(Long key); method insertSelective (line 25) | int insertSelective(Pay record); method updateOrderStatus (line 30) | int updateOrderStatus(Pay record); FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/mapper/PermissionMapper.java type PermissionMapper (line 22) | @Mapper method queryByUser (line 27) | @Select({"select p.* from sun_permission p " , method queryByRole (line 37) | @Select({"select p.id, p.name,p.index_name, p.parent_id pid, p.display... FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/mapper/RoleMapper.java type RoleMapper (line 19) | @Mapper method queryRolesUser (line 24) | List queryRolesUser(Admin user); method deleteRolePermission (line 27) | void deleteRolePermission(Integer id); method deleteAdminRole (line 30) | void deleteAdminRole(Integer id); method allotPermission (line 33) | void allotPermission(List obj); FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/AdminService.java type AdminService (line 15) | public interface AdminService { method findByName (line 22) | Admin findByName(String username); method createNewAdmin (line 29) | int createNewAdmin(Admin user); method updateUserStatus (line 36) | int updateUserStatus(Admin user, HttpServletRequest request); method deleteById (line 43) | void deleteById(Integer id); method setRoles (line 50) | void setRoles(AdminRoles adminRoles); FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/PayService.java type PayService (line 12) | public interface PayService { method Pay (line 21) | String Pay(Pay pay); method findById (line 29) | Pay findById(Long tradeNo); FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/PermissionService.java type PermissionService (line 16) | public interface PermissionService { method queryByUser (line 23) | List queryByUser(Admin user); FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/QiniuService.java type QiniuService (line 15) | public interface QiniuService { method saveImage (line 17) | String saveImage(MultipartFile file) throws IOException; FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/RoleService.java type RoleService (line 17) | public interface RoleService { method queryRolesUser (line 24) | List queryRolesUser(Admin user); method add (line 30) | void add(Role role); method deleteById (line 36) | void deleteById(Integer id); method updateRole (line 42) | void updateRole(Role role); method queryPermissionRole (line 48) | List> queryPermissionRole(Integer id); method allotRolePermissions (line 54) | void allotRolePermissions(RolePermissions rolePermissions); FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/impl/AdminServiceImpl.java class AdminServiceImpl (line 24) | @Service method findByName (line 32) | @Override method createNewAdmin (line 39) | @Override method updateUserStatus (line 64) | @Override method deleteById (line 78) | @Override method setRoles (line 87) | @Override FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/impl/PayServiceImpl.java class PayServiceImpl (line 23) | @Service method Pay (line 45) | @Override method findById (line 97) | @Override FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/impl/PermissionServiceImpl.java class PermissionServiceImpl (line 20) | @Service method queryByUser (line 27) | @Override FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/impl/QiniuServiceImpl.java class QiniuServiceImpl (line 28) | @Service method getUpToken (line 52) | public String getUpToken() { method saveImage (line 57) | public String saveImage(MultipartFile file) throws IOException { FILE: hacker-service-channel-manage/src/main/java/hacker/channel/manage/service/impl/RoleServiceImpl.java class RoleServiceImpl (line 25) | @Service method queryRolesUser (line 35) | @Override method add (line 42) | @Override method deleteById (line 49) | @Override method updateRole (line 59) | @Override method queryPermissionRole (line 66) | @Override method allotRolePermissions (line 122) | @Override