SYMBOL INDEX (616 symbols across 113 files) FILE: src/main/java/com/example/sens/Application.java class Application (line 19) | @Slf4j method main (line 25) | public static void main(String[] args) { FILE: src/main/java/com/example/sens/common/base/BaseEntity.java class BaseEntity (line 17) | @Data FILE: src/main/java/com/example/sens/common/base/BaseService.java type BaseService (line 21) | public interface BaseService { method getRepository (line 26) | BaseMapper getRepository(); method get (line 34) | default E get(ID id) { method getAll (line 43) | default List getAll() { method getTotalCount (line 52) | default Integer getTotalCount() { method insert (line 62) | default E insert(E entity) { method update (line 73) | default E update(E entity) { method insertOrUpdate (line 83) | default E insertOrUpdate(E entity) { method batchInsert (line 107) | default List batchInsert(List list) { method delete (line 120) | default void delete(ID id) { method batchDelete (line 129) | default void batchDelete(List ids) { method findByBatchIds (line 139) | default List findByBatchIds(List ids) { method findAll (line 148) | default List findAll() { method findAll (line 158) | default List findAll(QueryWrapper queryWrapper) { method findAll (line 168) | default List findAll(QueryCondition condition) { method findAll (line 183) | default Page findAll(Page page) { method getQueryWrapper (line 193) | QueryWrapper getQueryWrapper(E e); method findAll (line 202) | default Page findAll(Page page, QueryCondition condition) { method count (line 228) | default long count(QueryWrapper queryWrapper) { FILE: src/main/java/com/example/sens/common/constant/CommonConstant.java type CommonConstant (line 7) | public interface CommonConstant { FILE: src/main/java/com/example/sens/config/MvcConfig.java class MvcConfig (line 17) | @Slf4j method addResourceHandlers (line 30) | @Override method addCorsMappings (line 43) | @Override method localeResolver (line 52) | @Bean FILE: src/main/java/com/example/sens/config/mybatisplus/MybatisPlusConfig.java class MybatisPlusConfig (line 14) | @Configuration method performanceInterceptor (line 21) | @Bean method paginationInterceptor (line 34) | @Bean FILE: src/main/java/com/example/sens/config/properties/IgnoredUrlsProperties.java class IgnoredUrlsProperties (line 13) | @Data FILE: src/main/java/com/example/sens/config/schedule/SystemSchedule.java class SystemSchedule (line 24) | @Component method updatePostStatus (line 39) | @Scheduled(fixedRate = 10000) FILE: src/main/java/com/example/sens/config/shiro/MyRealm.java class MyRealm (line 27) | @Slf4j method doGetAuthenticationInfo (line 46) | @Override method doGetAuthorizationInfo (line 85) | @Override FILE: src/main/java/com/example/sens/config/shiro/ShiroConfig.java class ShiroConfig (line 19) | @Configuration method shiroDialect (line 22) | @Bean method getIgnoredUrlsProperties (line 27) | @Bean method shiroFilter (line 32) | @Bean method securityManager (line 67) | @Bean method myRealm (line 75) | @Bean method getURLPathMatchingFilter (line 87) | public URLPathMatchingFilter getURLPathMatchingFilter() { method hashedCredentialsMatcher (line 96) | @Bean method allowAllCredentialsMatcher (line 106) | @Bean FILE: src/main/java/com/example/sens/config/shiro/URLPathMatchingFilter.java class URLPathMatchingFilter (line 22) | public class URLPathMatchingFilter extends PathMatchingFilter { method permissionService (line 26) | private PermissionService permissionService() { method onPreHandle (line 33) | @Override method isAjax (line 68) | public static boolean isAjax(HttpServletRequest httpRequest) { FILE: src/main/java/com/example/sens/controller/admin/AdminController.java class AdminController (line 23) | @Slf4j method index (line 40) | @GetMapping method getMenu (line 51) | @GetMapping(value = "/currentMenus") method currentUser (line 62) | @GetMapping(value = "/currentUser") method currentRole (line 75) | @GetMapping(value = "/currentRole") method pay (line 86) | @GetMapping("/pay") FILE: src/main/java/com/example/sens/controller/admin/AttachmentController.java class AttachmentController (line 22) | @Slf4j method uploadFile (line 34) | @PostMapping(value = "/upload", produces = {"application/json;charset=... FILE: src/main/java/com/example/sens/controller/admin/CategoryController.java class CategoryController (line 21) | @Slf4j method categories (line 35) | @GetMapping method saveCategory (line 53) | @PostMapping(value = "/save") method checkDelete (line 66) | @DeleteMapping(value = "/delete") method toEditCategory (line 86) | @GetMapping(value = "/edit") FILE: src/main/java/com/example/sens/controller/admin/NoticeController.java class NoticeController (line 28) | @Slf4j method notices (line 42) | @GetMapping method newNotice (line 69) | @GetMapping(value = "/new") method pushNotice (line 80) | @PostMapping(value = "/save") method removeNotice (line 104) | @DeleteMapping(value = "/delete") method editNotice (line 119) | @GetMapping(value = "/edit") FILE: src/main/java/com/example/sens/controller/admin/OrderController.java class OrderController (line 27) | @Slf4j method orders (line 40) | @GetMapping method lease (line 60) | @GetMapping("/lease") method rent (line 82) | @GetMapping("/rent") method delete (line 105) | @DeleteMapping(value = "/delete") method finish (line 126) | @PostMapping(value = "/finish") method close (line 145) | @PostMapping(value = "/close") method finance (line 167) | @GetMapping("/finance") FILE: src/main/java/com/example/sens/controller/admin/PermissionController.java class PermissionController (line 21) | @Slf4j method permissions (line 35) | @GetMapping method savePermission (line 58) | @PostMapping(value = "/save") method checkDelete (line 70) | @DeleteMapping(value = "/delete") method toAddPermission (line 88) | @GetMapping(value = "/new") method toEditPermission (line 104) | @GetMapping(value = "/edit") method getPermissionList (line 123) | public List getPermissionList() { FILE: src/main/java/com/example/sens/controller/admin/PostController.java class PostController (line 33) | @Slf4j method posts (line 61) | @GetMapping method lease (line 95) | @GetMapping("/lease") method rent (line 129) | @GetMapping("/rent") method newPost (line 159) | @GetMapping(value = "/new") method pushPost (line 176) | @PostMapping(value = "/save") method moveToPublish (line 222) | @PostMapping(value = "/revert") method removePost (line 241) | @DeleteMapping(value = "/delete") method editPost (line 275) | @GetMapping(value = "/edit") FILE: src/main/java/com/example/sens/controller/admin/ProfileController.java class ProfileController (line 20) | @Slf4j method profile (line 33) | @GetMapping("/profile") method info (line 45) | @GetMapping("/info") method saveProfile (line 63) | @PostMapping(value = "/profile/save") method changePass (line 89) | @RequestMapping(method = RequestMethod.POST, value = "/changePass") FILE: src/main/java/com/example/sens/controller/admin/RechargeRecordController.java class RechargeRecordController (line 23) | @Slf4j method rechargeRecords (line 39) | @GetMapping method checkDelete (line 69) | @DeleteMapping(value = "/delete") method rechargePage (line 82) | @GetMapping(value = "/new") method recharge (line 95) | @PostMapping(value = "/save") FILE: src/main/java/com/example/sens/controller/admin/RoleController.java class RoleController (line 26) | @Slf4j method roles (line 42) | @GetMapping method saveRole (line 63) | @PostMapping(value = "/save") method checkDelete (line 88) | @DeleteMapping(value = "/delete") method addRole (line 106) | @GetMapping("/new") method toEditRole (line 120) | @GetMapping(value = "/edit") method getPermissionList (line 141) | public List getPermissionList() { FILE: src/main/java/com/example/sens/controller/admin/UserController.java class UserController (line 25) | @Slf4j method users (line 50) | @GetMapping method removeUser (line 95) | @DeleteMapping(value = "/delete") method addUser (line 107) | @GetMapping("/new") method edit (line 122) | @GetMapping("/edit") method batchDelete (line 147) | @DeleteMapping(value = "/batchDelete") method saveUser (line 167) | @PostMapping(value = "/save") FILE: src/main/java/com/example/sens/controller/common/BaseController.java class BaseController (line 11) | public abstract class BaseController { method renderNotFound (line 18) | public String renderNotFound() { method renderNotAllowAccess (line 28) | public String renderNotAllowAccess() { method getLoginUser (line 37) | public User getLoginUser() { method getLoginUserId (line 50) | public Long getLoginUserId() { method loginUserIsAdmin (line 59) | public Boolean loginUserIsAdmin() { method loginUserIsUser (line 72) | public Boolean loginUserIsUser() { FILE: src/main/java/com/example/sens/controller/common/CommonController.java class CommonController (line 14) | @Slf4j method handleError (line 25) | @GetMapping(value = "/error") method fourZeroThree (line 40) | @GetMapping(value = "/403") method fourZeroFour (line 51) | @GetMapping(value = "/404") method fiveZeroZero (line 62) | @GetMapping(value = "/500") method getErrorPath (line 72) | @Override FILE: src/main/java/com/example/sens/controller/home/FrontPostController.java class FrontPostController (line 38) | @Controller method postList (line 62) | @GetMapping("/post") method postDetails (line 144) | @GetMapping("/post/{id}") method checkout (line 209) | @GetMapping("/checkout") method addOrder (line 267) | @PostMapping("/order") method order (line 316) | @GetMapping("/order/{id}") method agreement (line 349) | @GetMapping("/agreement") method agreementDownload (line 386) | @GetMapping("/agreement/download") method pay (line 440) | @GetMapping("/pay") method paySuccess (line 480) | @PostMapping("/pay") method login (line 528) | @GetMapping("/login") method register (line 534) | @GetMapping("/register") FILE: src/main/java/com/example/sens/controller/home/IndexController.java class IndexController (line 23) | @Controller method index (line 38) | @GetMapping("/") method contact (line 56) | @GetMapping("/contact") method noticeList (line 74) | @GetMapping("/notice") method noticeDetails (line 102) | @GetMapping("/notice/{id}") FILE: src/main/java/com/example/sens/controller/home/LoginController.java class LoginController (line 29) | @Controller method getLogin (line 52) | @PostMapping(value = "/login") method logOut (line 87) | @GetMapping(value = "/logout") method ajaxLogOut (line 99) | @PostMapping(value = "/logout") method getRegister (line 114) | @PostMapping(value = "/register") method checkLogin (line 156) | @GetMapping(value = "/checkLogin") FILE: src/main/java/com/example/sens/dto/JsonResult.java class JsonResult (line 13) | @Data method JsonResult (line 37) | public JsonResult(Integer code, String msg) { method JsonResult (line 49) | public JsonResult(Integer code, String msg, Object result) { method JsonResult (line 61) | public JsonResult(Integer code, Object result) { method error (line 66) | public static JsonResult error(String msg) { method error (line 69) | public static JsonResult error(String msg, Object data) { method success (line 72) | public static JsonResult success() { method success (line 76) | public static JsonResult success(String msg) { method success (line 80) | public static JsonResult success(String msg, Object result) { FILE: src/main/java/com/example/sens/dto/PostQueryCondition.java class PostQueryCondition (line 11) | @Data FILE: src/main/java/com/example/sens/dto/QueryCondition.java class QueryCondition (line 13) | @Data method QueryCondition (line 27) | public QueryCondition() { method QueryCondition (line 30) | public QueryCondition(T data) { method QueryCondition (line 34) | public QueryCondition(T data, SearchVo searchVo) { FILE: src/main/java/com/example/sens/entity/Category.java class Category (line 16) | @Data FILE: src/main/java/com/example/sens/entity/City.java class City (line 16) | @Data FILE: src/main/java/com/example/sens/entity/Notice.java class Notice (line 13) | @Data FILE: src/main/java/com/example/sens/entity/Order.java class Order (line 15) | @Data FILE: src/main/java/com/example/sens/entity/Permission.java class Permission (line 16) | @Data FILE: src/main/java/com/example/sens/entity/Post.java class Post (line 12) | @Data FILE: src/main/java/com/example/sens/entity/RechargeRecord.java class RechargeRecord (line 12) | @TableName("recharge_record") FILE: src/main/java/com/example/sens/entity/Role.java class Role (line 13) | @Data FILE: src/main/java/com/example/sens/entity/RolePermissionRef.java class RolePermissionRef (line 7) | @Data method RolePermissionRef (line 21) | public RolePermissionRef() { method RolePermissionRef (line 24) | public RolePermissionRef(Long roleId, Long permissionId) { FILE: src/main/java/com/example/sens/entity/User.java class User (line 14) | @Data FILE: src/main/java/com/example/sens/entity/UserRoleRef.java class UserRoleRef (line 12) | @Data method UserRoleRef (line 27) | public UserRoleRef(Long userId, Long roleId) { method UserRoleRef (line 32) | public UserRoleRef() { FILE: src/main/java/com/example/sens/enums/CommonParamsEnum.java type CommonParamsEnum (line 6) | public enum CommonParamsEnum { method CommonParamsEnum (line 30) | CommonParamsEnum(Integer value) { method getValue (line 34) | public Integer getValue() { FILE: src/main/java/com/example/sens/enums/OrderStatusEnum.java type OrderStatusEnum (line 8) | public enum OrderStatusEnum { method OrderStatusEnum (line 41) | OrderStatusEnum(Integer code) { method getCode (line 45) | public Integer getCode() { FILE: src/main/java/com/example/sens/enums/PostIsRecommendEnum.java type PostIsRecommendEnum (line 6) | public enum PostIsRecommendEnum { method PostIsRecommendEnum (line 20) | PostIsRecommendEnum(Integer value) { method getValue (line 24) | public Integer getValue() { FILE: src/main/java/com/example/sens/enums/PostIsStickyEnum.java type PostIsStickyEnum (line 6) | public enum PostIsStickyEnum { method PostIsStickyEnum (line 20) | PostIsStickyEnum(Integer value) { method getValue (line 24) | public Integer getValue() { FILE: src/main/java/com/example/sens/enums/PostStatusEnum.java type PostStatusEnum (line 11) | public enum PostStatusEnum { method PostStatusEnum (line 30) | PostStatusEnum(Integer code) { method getCode (line 34) | public Integer getCode() { FILE: src/main/java/com/example/sens/enums/PostTypeEnum.java type PostTypeEnum (line 11) | public enum PostTypeEnum { method PostTypeEnum (line 30) | PostTypeEnum(String value) { method getValue (line 34) | public String getValue() { FILE: src/main/java/com/example/sens/enums/ResourceTypeEnum.java type ResourceTypeEnum (line 6) | public enum ResourceTypeEnum { method ResourceTypeEnum (line 28) | ResourceTypeEnum(String code, String description) { method getCode (line 33) | public String getCode() { method setCode (line 37) | public void setCode(String code) { method getDescription (line 41) | public String getDescription() { method setDescription (line 45) | public void setDescription(String description) { FILE: src/main/java/com/example/sens/enums/ResultCodeEnum.java type ResultCodeEnum (line 6) | public enum ResultCodeEnum { method ResultCodeEnum (line 20) | ResultCodeEnum(Integer code) { method getCode (line 24) | public Integer getCode() { FILE: src/main/java/com/example/sens/enums/RoleEnum.java type RoleEnum (line 9) | public enum RoleEnum { method RoleEnum (line 23) | RoleEnum(String value) { method getValue (line 27) | public String getValue() { FILE: src/main/java/com/example/sens/enums/TrueFalseEnum.java type TrueFalseEnum (line 6) | public enum TrueFalseEnum { method TrueFalseEnum (line 20) | TrueFalseEnum(String value) { method getValue (line 24) | public String getValue() { FILE: src/main/java/com/example/sens/enums/UserStatusEnum.java type UserStatusEnum (line 6) | public enum UserStatusEnum { method UserStatusEnum (line 21) | UserStatusEnum(Integer code) { method getCode (line 25) | public Integer getCode() { FILE: src/main/java/com/example/sens/exception/GlobalExceptionHandler.java class GlobalExceptionHandler (line 38) | @ControllerAdvice method isAjax (line 48) | public static boolean isAjax(HttpServletRequest httpRequest) { method handleMissingServletRequestParameterException (line 58) | @ResponseStatus(HttpStatus.BAD_REQUEST) method handleHttpMessageNotReadableException (line 71) | @ResponseStatus(HttpStatus.BAD_REQUEST) method handleMethodArgumentNotValidException (line 84) | @ResponseStatus(HttpStatus.BAD_REQUEST) method handleBindException (line 101) | @ResponseStatus(HttpStatus.BAD_REQUEST) method handleServiceException (line 120) | @ResponseStatus(HttpStatus.BAD_REQUEST) method handleValidationException (line 135) | @ResponseStatus(HttpStatus.BAD_REQUEST) method noHandlerFoundException (line 148) | @ResponseStatus(HttpStatus.NOT_FOUND) method handleHttpRequestMethodNotSupportedException (line 162) | @ResponseStatus(HttpStatus.METHOD_NOT_ALLOWED) method handleHttpMediaTypeNotSupportedException (line 175) | @ResponseStatus(HttpStatus.UNSUPPORTED_MEDIA_TYPE) method processApiException (line 192) | @ExceptionHandler(MyBusinessException.class) method defaultErrorHandler (line 210) | @ExceptionHandler(value = Exception.class) FILE: src/main/java/com/example/sens/exception/MyBusinessException.java class MyBusinessException (line 8) | public class MyBusinessException extends RuntimeException { method MyBusinessException (line 15) | public MyBusinessException() { method MyBusinessException (line 19) | public MyBusinessException(String message) { method MyBusinessException (line 24) | public MyBusinessException(Integer code, String message) { method getCode (line 29) | public Integer getCode() { method setCode (line 33) | public void setCode(Integer code) { method getMessage (line 37) | @Override method setMessage (line 42) | public void setMessage(String message) { FILE: src/main/java/com/example/sens/mapper/CategoryMapper.java type CategoryMapper (line 13) | @Mapper method selectChildCateIds (line 22) | List selectChildCateIds(@Param("pathTrace") String pathTrace); method deleteByUserId (line 29) | Integer deleteByUserId(Long userId); method findAllWithCount (line 35) | List findAllWithCount(); FILE: src/main/java/com/example/sens/mapper/CityMapper.java type CityMapper (line 12) | @Mapper method findAllWithCount (line 19) | List findAllWithCount(); FILE: src/main/java/com/example/sens/mapper/NoticeMapper.java type NoticeMapper (line 11) | @Mapper FILE: src/main/java/com/example/sens/mapper/OrderMapper.java type OrderMapper (line 14) | @Mapper method findAll (line 23) | List findAll(@Param("condition") Order condition, Page page); method getTotalPriceSum (line 31) | Integer getTotalPriceSum(@Param("condition") Order condition); method updateOverDueOrder (line 38) | Integer updateOverDueOrder(); method deleteByPostId (line 45) | Integer deleteByPostId(Long postId); method findOverDueOrder (line 51) | List findOverDueOrder(); method findByPostId (line 58) | Order findByPostId(Long postId); FILE: src/main/java/com/example/sens/mapper/PermissionMapper.java type PermissionMapper (line 14) | @Mapper method findByRoleId (line 23) | List findByRoleId(Long roleId); method findPermissionByUserId (line 31) | List findPermissionByUserId(Long userId); method findPermissionByUserIdAndResourceType (line 40) | List findPermissionByUserIdAndResourceType(@Param("userId"... method findPermissionByResourceType (line 50) | List findPermissionByResourceType(Integer resourceType); method findPermissionByRoleId (line 57) | List findPermissionByRoleId(Long roleId); method countChildPermission (line 64) | Integer countChildPermission(Long id); method findByUrl (line 71) | Permission findByUrl(String url); FILE: src/main/java/com/example/sens/mapper/PostMapper.java type PostMapper (line 15) | @Mapper method findPostByCondition (line 25) | List findPostByCondition(@Param(CommonConstant.CONDITION) Post c... method findByRentUserId (line 34) | List findByRentUserId(@Param("userId") Long userId, Page page); method countPostByCateId (line 42) | Integer countPostByCateId(Long cateId); method getLatestPost (line 52) | List getLatestPost(@Param("cityId") Long cityId, @Param("limit")... method countByStatus (line 60) | Integer countByStatus(Integer postStatus); method getUnionRentPost (line 67) | List getUnionRentPost(Post post); FILE: src/main/java/com/example/sens/mapper/RechargeRecordMapper.java type RechargeRecordMapper (line 15) | @Mapper method deleteByUserId (line 24) | Integer deleteByUserId(Long userId); method findAll (line 31) | List findAll(@Param("startDate") String startDate, method findByUserId (line 41) | List findByUserId(@Param("startDate") String startDate, method getTotalMoneySum (line 52) | Integer getTotalMoneySum(@Param("startDate") String startDate, FILE: src/main/java/com/example/sens/mapper/RoleMapper.java type RoleMapper (line 13) | @Mapper method findByUserId (line 23) | Role findByUserId(Long userId); method deleteByUserId (line 32) | Integer deleteByUserId(Long userId); method countUserByRoleId (line 40) | Integer countUserByRoleId(Long roleId); method findAllWithCount (line 47) | List findAllWithCount(); method findByLessThanLevel (line 54) | List findByLessThanLevel(Integer level); method findMaxLevelByUserId (line 61) | Integer findMaxLevelByUserId(Long userId); method findDefaultRole (line 67) | Role findDefaultRole(); FILE: src/main/java/com/example/sens/mapper/RolePermissionRefMapper.java type RolePermissionRefMapper (line 13) | @Mapper method deleteByRoleId (line 23) | Integer deleteByRoleId(Long roleId); method deleteByPermissionId (line 31) | Integer deleteByPermissionId(Long permissionId); method batchInsert (line 38) | Integer batchInsert(List rolePermissionRefList); FILE: src/main/java/com/example/sens/mapper/UserMapper.java type UserMapper (line 14) | @Mapper method findByRoleId (line 24) | List findByRoleId(@Param("roleId") Long roleId, Page page); method findByRoleIdAndCondition (line 34) | List findByRoleIdAndCondition(@Param("roleId") Long roleId, method findByCondition (line 44) | List findByCondition( @Param("user") User user, Page page); method getTodayCount (line 50) | Integer getTodayCount(); method getUserPostRanking (line 57) | List getUserPostRanking(Integer limit); method getLatestUser (line 64) | List getLatestUser(Integer limit); method getHotUsers (line 71) | List getHotUsers(Integer limit); FILE: src/main/java/com/example/sens/mapper/UserRoleRefMapper.java type UserRoleRefMapper (line 10) | @Mapper method deleteByUserId (line 19) | Integer deleteByUserId(Long userId); FILE: src/main/java/com/example/sens/service/CategoryService.java type CategoryService (line 17) | public interface CategoryService extends BaseService { method findByUserId (line 24) | List findByUserId(Long userId); method countPostByCateId (line 32) | Integer countPostByCateId(Long cateId); method deleteByUserId (line 40) | Integer deleteByUserId(Long userId); method cateIdsToCateList (line 49) | List cateIdsToCateList(List cateIds, Long userId); FILE: src/main/java/com/example/sens/service/CityService.java type CityService (line 7) | public interface CityService extends BaseService { FILE: src/main/java/com/example/sens/service/MailService.java type MailService (line 11) | public interface MailService { method sendMail (line 20) | void sendMail(String to, String title, String content) throws Messagin... FILE: src/main/java/com/example/sens/service/NoticeService.java type NoticeService (line 7) | public interface NoticeService extends BaseService { FILE: src/main/java/com/example/sens/service/OrderService.java type OrderService (line 13) | public interface OrderService extends BaseService { method getTotalPriceSum (line 20) | Integer getTotalPriceSum(Order condition); method findAll (line 29) | Page findAll(Order condition, Page page); method findByPostId (line 36) | Order findByPostId(Long postId); FILE: src/main/java/com/example/sens/service/PermissionService.java type PermissionService (line 12) | public interface PermissionService extends BaseService { method listPermissionsByRoleId (line 20) | List listPermissionsByRoleId(Long roleId); method findPermissionUrlsByUserId (line 28) | Set findPermissionUrlsByUserId(Long userId); method findPermissionTreeByUserIdAndResourceType (line 37) | List findPermissionTreeByUserIdAndResourceType(Long userId... method findPermissionByRoleId (line 44) | List findPermissionByRoleId(Long roleId); method findPermissionListWithLevel (line 50) | List findPermissionListWithLevel(); method countChildPermission (line 57) | Integer countChildPermission(Long id); method findByUrl (line 64) | Permission findByUrl(String url); FILE: src/main/java/com/example/sens/service/PostService.java type PostService (line 14) | public interface PostService extends BaseService { method findPostByCondition (line 22) | Page findPostByCondition(Post condition, Page page); method findByRentUserId (line 31) | Page findByRentUserId(Long userId, Page page); method getLatestPost (line 41) | List getLatestPost(Long cityId, int limit); method countByStatus (line 49) | Integer countByStatus(Integer postStatus); method getUnionRentPost (line 56) | List getUnionRentPost(Post post); FILE: src/main/java/com/example/sens/service/RechargeRecordService.java type RechargeRecordService (line 13) | public interface RechargeRecordService extends BaseService findAll(String startDate, String endDate, Page findByUserId(String startDate, String endDate, Lo... method getTotalMoneySum (line 35) | Integer getTotalMoneySum(String startDate, String endDate); FILE: src/main/java/com/example/sens/service/RolePermissionRefService.java type RolePermissionRefService (line 8) | public interface RolePermissionRefService { method deleteRefByRoleId (line 15) | void deleteRefByRoleId(Long roleId); method saveByRolePermissionRef (line 23) | void saveByRolePermissionRef(RolePermissionRef rolePermissionRef); method batchSaveByRolePermissionRef (line 30) | void batchSaveByRolePermissionRef(List rolePermissi... FILE: src/main/java/com/example/sens/service/RoleService.java type RoleService (line 11) | public interface RoleService extends BaseService { method deleteByUserId (line 18) | void deleteByUserId(Long userId); method findByRoleId (line 26) | Role findByRoleId(Long roleId); method findByRoleName (line 34) | Role findByRoleName(String roleName); method findByUserId (line 42) | Role findByUserId(Long userId); method countUserByRoleId (line 49) | Integer countUserByRoleId(Long roleId); method findMaxLevelByUserId (line 56) | Integer findMaxLevelByUserId(Long userId); method findByLessThanLevel (line 63) | List findByLessThanLevel(Integer level); method findDefaultRole (line 69) | Role findDefaultRole(); method getMaxRoleByUserId (line 75) | Role getMaxRoleByUserId(Long userId); FILE: src/main/java/com/example/sens/service/UserRoleRefService.java type UserRoleRefService (line 7) | public interface UserRoleRefService extends BaseService { method findByUserName (line 18) | User findByUserName(String userName); method findByIdCard (line 27) | User findByIdCard(String idCard); method updatePassword (line 35) | void updatePassword(Long userId, String password); method findByRoleAndCondition (line 45) | Page findByRoleAndCondition(String roleName, User condition, Pag... FILE: src/main/java/com/example/sens/service/impl/CategoryServiceImpl.java class CategoryServiceImpl (line 24) | @Service method getRepository (line 36) | @Override method getQueryWrapper (line 41) | @Override method insert (line 53) | @Override method update (line 59) | @Override method delete (line 65) | @Override method findByUserId (line 72) | @Override method countPostByCateId (line 80) | @Override method insertOrUpdate (line 85) | @Override method deleteByUserId (line 95) | @Override method cateIdsToCateList (line 100) | @Override method findAll (line 116) | @Override FILE: src/main/java/com/example/sens/service/impl/CityServiceImpl.java class CityServiceImpl (line 19) | @Service method getRepository (line 26) | @Override method getQueryWrapper (line 31) | @Override method findAll (line 43) | @Override FILE: src/main/java/com/example/sens/service/impl/MailServiceImpl.java class MailServiceImpl (line 19) | @Service method sendMail (line 41) | @Override FILE: src/main/java/com/example/sens/service/impl/NoticeServiceImpl.java class NoticeServiceImpl (line 17) | @Service method getRepository (line 24) | @Override method getQueryWrapper (line 29) | @Override FILE: src/main/java/com/example/sens/service/impl/OrderServiceImpl.java class OrderServiceImpl (line 16) | @Service method getRepository (line 22) | @Override method getQueryWrapper (line 27) | @Override method getTotalPriceSum (line 54) | @Override method findAll (line 59) | @Override method findByPostId (line 64) | @Override FILE: src/main/java/com/example/sens/service/impl/PermissionServiceImpl.java class PermissionServiceImpl (line 22) | @Service method listPermissionsByRoleId (line 32) | @Override method findPermissionUrlsByUserId (line 37) | @Override method findPermissionTreeByUserIdAndResourceType (line 44) | @Override method findPermissionByRoleId (line 50) | @Override method getRepository (line 56) | @Override method getQueryWrapper (line 61) | @Override method insertOrUpdate (line 82) | @Override method delete (line 92) | @Override method findPermissionListWithLevel (line 99) | @Override method countChildPermission (line 114) | @Override method findByUrl (line 119) | @Override FILE: src/main/java/com/example/sens/service/impl/PostServiceImpl.java class PostServiceImpl (line 23) | @Service method findPostByCondition (line 31) | @Override method findByRentUserId (line 37) | @Override method getRepository (line 44) | @Override method insert (line 49) | @Override method update (line 55) | @Override method delete (line 61) | @Override method getQueryWrapper (line 67) | @Override method insertOrUpdate (line 85) | @Override method getLatestPost (line 96) | @Override method countByStatus (line 101) | @Override method getUnionRentPost (line 106) | @Override FILE: src/main/java/com/example/sens/service/impl/RechargeRecordServiceImpl.java class RechargeRecordServiceImpl (line 16) | @Service method getRepository (line 22) | @Override method getQueryWrapper (line 27) | @Override method findAll (line 39) | @Override method findByUserId (line 44) | @Override method getTotalMoneySum (line 49) | @Override FILE: src/main/java/com/example/sens/service/impl/RolePermissionRefServiceImpl.java class RolePermissionRefServiceImpl (line 11) | @Service method deleteRefByRoleId (line 17) | @Override method saveByRolePermissionRef (line 22) | @Override method batchSaveByRolePermissionRef (line 27) | @Override FILE: src/main/java/com/example/sens/service/impl/RoleServiceImpl.java class RoleServiceImpl (line 22) | @Service method getRepository (line 31) | @Override method getQueryWrapper (line 36) | @Override method deleteByUserId (line 51) | @Override method findByRoleId (line 56) | @Override method findByRoleName (line 61) | @Override method findByUserId (line 68) | @Override method countUserByRoleId (line 73) | @Override method findMaxLevelByUserId (line 78) | @Override method findByLessThanLevel (line 83) | @Override method findDefaultRole (line 88) | @Override method getMaxRoleByUserId (line 93) | @Override method insert (line 98) | @Override method update (line 112) | @Override method insertOrUpdate (line 129) | @Override FILE: src/main/java/com/example/sens/service/impl/UserRoleRefServiceImpl.java class UserRoleRefServiceImpl (line 12) | @Service method deleteByUserId (line 19) | @Override method getRepository (line 24) | @Override method getQueryWrapper (line 29) | @Override FILE: src/main/java/com/example/sens/service/impl/UserServiceImpl.java class UserServiceImpl (line 29) | @Service method findByUserName (line 44) | @Override method findByIdCard (line 51) | @Override method updatePassword (line 58) | @Override method findByRoleAndCondition (line 66) | @Override method getRepository (line 80) | @Override method getQueryWrapper (line 85) | @Override method insert (line 100) | @Override method update (line 111) | @Override method checkUserNameAndIdCard (line 122) | private void checkUserNameAndIdCard(User user) { method delete (line 142) | @Override method insertOrUpdate (line 166) | @Override method basicCheck (line 177) | private void basicCheck(User user) { method get (line 195) | @Override FILE: src/main/java/com/example/sens/util/DateUtil.java class DateUtil (line 12) | public class DateUtil { method getBetweenDates (line 18) | public static List getBetweenDates(String start, int count) { method getBetweenDates (line 38) | public static List getBetweenDates(String start, String end) { method main (line 62) | public static void main(String[] args) { FILE: src/main/java/com/example/sens/util/FileUtil.java class FileUtil (line 17) | public class FileUtil { method upload (line 25) | public static String upload(MultipartFile file) { method readStringFromUrl (line 84) | public static String readStringFromUrl(String url) throws IOException,... method readAll (line 96) | private static String readAll(Reader rd) throws IOException { FILE: src/main/java/com/example/sens/util/IpInfoUtil.java class IpInfoUtil (line 14) | @Slf4j method getIpAddr (line 22) | public static String getIpAddr(HttpServletRequest request) { FILE: src/main/java/com/example/sens/util/Md5Util.java class Md5Util (line 13) | public class Md5Util { method toMd5 (line 24) | public static String toMd5(String pwd, String salt, int i) { method createChecksum (line 36) | private static byte[] createChecksum(MultipartFile file) throws Except... method getMD5Checksum (line 61) | public static String getMD5Checksum(MultipartFile file) throws Excepti... method main (line 71) | public static void main(String args[]) { FILE: src/main/java/com/example/sens/util/ObjectUtil.java class ObjectUtil (line 14) | public class ObjectUtil { method mapToString (line 16) | public static String mapToString(Map paramMap){ method mapToStringAll (line 32) | public static String mapToStringAll(Map paramMap){ method beanToMap (line 47) | public static Map beanToMap(T bean) { FILE: src/main/java/com/example/sens/util/PageUtil.java class PageUtil (line 15) | public class PageUtil { method initMpPage (line 31) | public static Page initMpPage(long pageNumber, long pageSize, String s... method listToPage (line 78) | public static List listToPage(PageVo page, List list) { method camelToUnderline (line 108) | private static String camelToUnderline(String str) { method convertPageVo (line 134) | public static PageVo convertPageVo(Page page) { FILE: src/main/java/com/example/sens/util/PermissionUtil.java class PermissionUtil (line 12) | public class PermissionUtil { method getPermissionTree (line 21) | public static List getPermissionTree(List perm... method getChildTree (line 43) | private static List getChildTree(Long id, List... method getPermissionList (line 69) | public static List getPermissionList(List perm... method getChildList (line 89) | private static List getChildList(Permission parentPermissi... FILE: src/main/java/com/example/sens/util/RegexUtil.java class RegexUtil (line 13) | public class RegexUtil { method isEmail (line 21) | public static boolean isEmail(String email) { method isIdCard (line 36) | public static boolean isIdCard(String idCard) { method getImgSrc (line 43) | public static List getImgSrc(String htmlStr) { FILE: src/main/java/com/example/sens/util/RelativeDateFormat.java class RelativeDateFormat (line 11) | public class RelativeDateFormat { method format (line 25) | public static String format(Date date) { method toSeconds (line 55) | private static long toSeconds(long date) { method toMinutes (line 59) | private static long toMinutes(long date) { method toHours (line 63) | private static long toHours(long date) { method toDays (line 67) | private static long toDays(long date) { method toMonths (line 71) | private static long toMonths(long date) { method toYears (line 75) | private static long toYears(long date) { FILE: src/main/java/com/example/sens/util/Response.java class Response (line 3) | public class Response { method Response (line 16) | public Response() { method Response (line 19) | public Response(Boolean success) { method Response (line 23) | public Response(Boolean success, String message) { method Response (line 28) | public Response(Boolean success, String message, T data) { method Response (line 34) | public Response(Boolean success, Integer status, String message, T dat... method yes (line 42) | public static Response yes() { method yes (line 46) | public static Response yes(T data) { method yes (line 50) | public static Response yes(String message, T data) { method no (line 54) | public static Response no() { method no (line 58) | public static Response no(String message) { method no (line 62) | public static Response no(Integer status, String message) { method isSuccess (line 66) | public Boolean isSuccess() { method setSuccess (line 70) | public void setSuccess(Boolean success) { method getMessage (line 74) | public String getMessage() { method setMessage (line 78) | public void setMessage(String message) { method getData (line 82) | public T getData() { method setData (line 86) | public void setData(T data) { method getSuccess (line 90) | public Boolean getSuccess() { method getStatus (line 94) | public Integer getStatus() { method setStatus (line 98) | public void setStatus(Integer status) { FILE: src/main/java/com/example/sens/util/SensUtils.java class SensUtils (line 13) | @Slf4j method configMail (line 23) | public static void configMail(String smtpHost, String userName, String... method listToStr (line 30) | public static String listToStr(List list) { method main (line 42) | public static void main(String[] args) { FILE: src/main/java/com/example/sens/util/SpringUtil.java class SpringUtil (line 8) | @Component method getApplicationContext (line 18) | public static ApplicationContext getApplicationContext() { method setApplicationContext (line 22) | @Override method getBean (line 35) | public static Object getBean(String name) { method getBean (line 46) | public static T getBean(Class clazz) { FILE: src/main/java/com/example/sens/util/ThreadPoolUtil.java class ThreadPoolUtil (line 11) | public class ThreadPoolUtil { method getPool (line 37) | public static ThreadPoolExecutor getPool() { method main (line 41) | public static void main(String[] args) { FILE: src/main/java/com/example/sens/vo/PageVo.java class PageVo (line 11) | @Data method PageVo (line 52) | public PageVo() { method PageVo (line 55) | public PageVo(int page, int size) { method PageVo (line 60) | public PageVo(int page, int size, String sort, String order) { FILE: src/main/java/com/example/sens/vo/SearchVo.java class SearchVo (line 10) | @Data FILE: src/main/resources/static/front/js/jqBootstrapValidation.js function regexFromString (line 875) | function regexFromString(inputstring) { function executeFunctionByName (line 885) | function executeFunctionByName(functionName, context /*, args*/) { FILE: src/main/resources/static/js/adminlte.js function Plugin (line 99) | function Plugin(option) { function Plugin (line 269) | function Plugin(option) { function Plugin (line 414) | function Plugin(option) { function Plugin (line 483) | function Plugin(option) { function Plugin (line 659) | function Plugin(option) { function Plugin (line 838) | function Plugin(option) { function Plugin (line 944) | function Plugin(option) { function Plugin (line 1098) | function Plugin(option) { FILE: src/main/resources/static/js/app.js function initMenus (line 1) | function initMenus() { function getLoginUser (line 47) | function getLoginUser() { function initMenu (line 83) | function initMenu() { function showMsg (line 115) | function showMsg(text, icon, hideAfter) { function showMsgAndReload (line 134) | function showMsgAndReload(text, icon, hideAfter) { function showMsgAndRedirect (line 156) | function showMsgAndRedirect(text, icon, hideAfter, redirectUrl) { function doCheck (line 183) | function doCheck() { function push (line 200) | function push(status) { function saveNotice (line 256) | function saveNotice() { FILE: src/main/resources/static/plugins/bootstrap/js/bootstrap.js function transitionEnd (line 34) | function transitionEnd() { function removeElement (line 126) | function removeElement() { function Plugin (line 142) | function Plugin(option) { function Plugin (line 251) | function Plugin(option) { function Plugin (line 475) | function Plugin(option) { function getTargetFromTrigger (line 695) | function getTargetFromTrigger($trigger) { function Plugin (line 707) | function Plugin(option) { function getParent (line 774) | function getParent($this) { function clearMenus (line 787) | function clearMenus(e) { function Plugin (line 880) | function Plugin(option) { function Plugin (line 1208) | function Plugin(option, _relatedTarget) { function complete (line 1574) | function complete() { function Plugin (line 1750) | function Plugin(option) { function Plugin (line 1859) | function Plugin(option) { function ScrollSpy (line 1902) | function ScrollSpy(element, options) { function Plugin (line 2022) | function Plugin(option) { function next (line 2131) | function next() { function Plugin (line 2177) | function Plugin(option) { function Plugin (line 2334) | function Plugin(option) { FILE: src/main/resources/static/plugins/bootstrapvalidator/js/bootstrapValidator.js function runCallback (line 6003) | function runCallback() { FILE: src/main/resources/static/plugins/highlight/highlight.js function InsertSpaces (line 1) | function InsertSpaces(_36,pos,_38){var _39=_36.substr(0,pos);var _3a=_36... function ProcessLine (line 1) | function ProcessLine(_3d,_3e){if(_3d.indexOf(tab)==-1){return _3d;}var p... function Trim (line 1) | function Trim(str){return str.replace(/^\s*(.*?)[\s\n]*$/g,"$1");} function Chop (line 1) | function Chop(str){return str.replace(/\n*$/,"").replace(/^\n*/,"");} function Unindent (line 1) | function Unindent(str){var _4f=str.split("\n");var _50=new Array();var _... function Copy (line 1) | function Copy(_56,_57,_58){return _56.substr(_57,_58-_57);} function FindValue (line 1) | function FindValue(){var a=arguments;for(var i=0;i