├── .gitattributes ├── .gitignore ├── README.md ├── doc ├── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 90.png │ └── lombok1.png ├── lombok.jar └── rc_recharge.sql ├── pom.xml ├── roncoo-recharge-api ├── pom.xml ├── roncoo-recharge-api-core │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── roncoo │ │ └── recharge │ │ └── api │ │ ├── bo │ │ ├── BalanceBO.java │ │ ├── BaseBO.java │ │ ├── ExchangeBO.java │ │ ├── ExchangeNotifyBO.java │ │ ├── ExchangeOrderBO.java │ │ ├── RechargeBO.java │ │ ├── RechargeNotifyBO.java │ │ ├── RechargeOrderBO.java │ │ └── package-info.java │ │ ├── dto │ │ ├── BalanceDTO.java │ │ ├── ExchangeDTO.java │ │ ├── ExchangeNotifyDTO.java │ │ ├── ExchangeOrderDTO.java │ │ ├── RechargeDTO.java │ │ ├── RechargeNotifyDTO.java │ │ ├── RechargeOrderDTO.java │ │ └── package-info.java │ │ ├── facade │ │ ├── BalanceFacade.java │ │ ├── ExchangeFacade.java │ │ ├── RechargeFacade.java │ │ └── package-info.java │ │ ├── request │ │ ├── BalanceRequest.java │ │ ├── ExchangeOrderRequest.java │ │ ├── ExchangeRequest.java │ │ ├── RechargeOrderRequest.java │ │ └── RechargeRequest.java │ │ └── response │ │ ├── BalanceResponse.java │ │ ├── ExchangeOrderResponse.java │ │ ├── ExchangeResponse.java │ │ ├── RechargeOrderResponse.java │ │ └── RechargeResponse.java ├── roncoo-recharge-api-longguo │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── roncoo │ │ └── recharge │ │ └── api │ │ └── longguo │ │ ├── LongguoExchangeFacadeImpl.java │ │ └── LongguoRechargeFacadeImpl.java └── roncoo-recharge-api-roncoo │ ├── .gitignore │ ├── pom.xml │ └── src │ └── main │ └── java │ └── com │ └── roncoo │ └── recharge │ └── api │ └── roncoo │ ├── RoncooExchangeFacadeImpl.java │ └── RoncooRechargeFacadeImpl.java ├── roncoo-recharge-boss ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── roncoo │ │ │ └── recharge │ │ │ ├── BossApplication.java │ │ │ └── boss │ │ │ ├── bean │ │ │ ├── qo │ │ │ │ ├── AcctInfoQO.java │ │ │ │ ├── AcctLogQO.java │ │ │ │ ├── AreaInfoQO.java │ │ │ │ ├── ItemQO.java │ │ │ │ ├── ItemSupplyQO.java │ │ │ │ ├── MerchantInfoQO.java │ │ │ │ ├── MobileInfoQO.java │ │ │ │ ├── OrderSupplyQO.java │ │ │ │ ├── OrderTradePayQO.java │ │ │ │ ├── OrderTradeQO.java │ │ │ │ ├── SupplyInfoQO.java │ │ │ │ ├── SysLogLoginQO.java │ │ │ │ ├── SysLogOptQO.java │ │ │ │ ├── SysMenuQO.java │ │ │ │ ├── SysMenuRoleQO.java │ │ │ │ ├── SysPlatformQO.java │ │ │ │ ├── SysRoleQO.java │ │ │ │ ├── SysRoleUserQO.java │ │ │ │ └── SysUserInfoQO.java │ │ │ └── vo │ │ │ │ ├── AcctInfoVO.java │ │ │ │ ├── AcctLogVO.java │ │ │ │ ├── AreaInfoVO.java │ │ │ │ ├── ItemSupplyVO.java │ │ │ │ ├── ItemVO.java │ │ │ │ ├── MerchantInfoVO.java │ │ │ │ ├── MobileInfoVO.java │ │ │ │ ├── OrderSupplyVO.java │ │ │ │ ├── OrderTradePayVO.java │ │ │ │ ├── OrderTradeVO.java │ │ │ │ ├── SupplyInfoVO.java │ │ │ │ ├── SysLogLoginVO.java │ │ │ │ ├── SysLogOptVO.java │ │ │ │ ├── SysMenuRoleVO.java │ │ │ │ ├── SysMenuVO.java │ │ │ │ ├── SysPlatformVO.java │ │ │ │ ├── SysRoleUserVO.java │ │ │ │ ├── SysRoleVO.java │ │ │ │ └── SysUserInfoVO.java │ │ │ ├── common │ │ │ ├── BossExceptionHandler.java │ │ │ ├── ShiroComponent.java │ │ │ ├── WebMvcConfiguration.java │ │ │ └── XssFilter.java │ │ │ ├── controller │ │ │ ├── IndexController.java │ │ │ ├── LoginController.java │ │ │ └── admin │ │ │ │ ├── AcctInfoController.java │ │ │ │ ├── AcctLogController.java │ │ │ │ ├── AreaInfoController.java │ │ │ │ ├── ItemController.java │ │ │ │ ├── ItemSupplyController.java │ │ │ │ ├── MerchantInfoController.java │ │ │ │ ├── MobileInfoController.java │ │ │ │ ├── OrderSupplyController.java │ │ │ │ ├── OrderTradeController.java │ │ │ │ ├── OrderTradePayController.java │ │ │ │ ├── SupplyInfoController.java │ │ │ │ ├── SysLogLoginController.java │ │ │ │ ├── SysLogOptController.java │ │ │ │ ├── SysMenuController.java │ │ │ │ ├── SysMenuRoleController.java │ │ │ │ ├── SysPlatformController.java │ │ │ │ ├── SysRoleController.java │ │ │ │ ├── SysRoleUserController.java │ │ │ │ └── SysUserInfoController.java │ │ │ └── service │ │ │ ├── AcctInfoService.java │ │ │ ├── AcctLogService.java │ │ │ ├── AreaInfoService.java │ │ │ ├── ItemService.java │ │ │ ├── ItemSupplyService.java │ │ │ ├── MerchantInfoService.java │ │ │ ├── MobileInfoService.java │ │ │ ├── OrderSupplyService.java │ │ │ ├── OrderTradePayService.java │ │ │ ├── OrderTradeService.java │ │ │ ├── SupplyInfoService.java │ │ │ ├── SysLogLoginService.java │ │ │ ├── SysLogOptService.java │ │ │ ├── SysMenuRoleService.java │ │ │ ├── SysMenuService.java │ │ │ ├── SysPlatformService.java │ │ │ ├── SysRoleService.java │ │ │ ├── SysRoleUserService.java │ │ │ └── SysUserInfoService.java │ └── resources │ │ ├── application.properties │ │ ├── static │ │ ├── BJUI │ │ │ ├── js │ │ │ │ ├── bjui-all.js │ │ │ │ ├── bjui-basedrag.js │ │ │ │ ├── bjui-regional.zh-CN.js │ │ │ │ ├── jquery-1.7.2.min.js │ │ │ │ └── jquery.cookie.js │ │ │ ├── login │ │ │ │ ├── css │ │ │ │ │ ├── login.css │ │ │ │ │ └── login2.css │ │ │ │ ├── images │ │ │ │ │ ├── account.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── password.png │ │ │ │ └── js │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── jsencrypt.min.js │ │ │ ├── other │ │ │ │ ├── html5shiv.min.js │ │ │ │ ├── jquery.iframe-transport.js │ │ │ │ └── respond.min.js │ │ │ ├── plugins │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── bootstrapSelect │ │ │ │ │ ├── bootstrap-select.css │ │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ │ ├── bootstrap-select.js │ │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ │ └── defaults-zh_CN.min.js │ │ │ │ ├── colorpicker │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ │ └── bootstrap-colorpicker.min.css │ │ │ │ │ ├── img │ │ │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ │ └── saturation.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ │ └── bootstrap-colorpicker.min.js │ │ │ │ ├── download │ │ │ │ │ └── jquery.fileDownload.js │ │ │ │ ├── dragsort │ │ │ │ │ ├── jquery.dragsort-0.5.1.js │ │ │ │ │ └── jquery.dragsort-0.5.1.min.js │ │ │ │ ├── echarts │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── chord.js │ │ │ │ │ │ ├── eventRiver.js │ │ │ │ │ │ ├── force.js │ │ │ │ │ │ ├── funnel.js │ │ │ │ │ │ ├── gauge.js │ │ │ │ │ │ ├── k.js │ │ │ │ │ │ ├── line.js │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ ├── pie.js │ │ │ │ │ │ ├── radar.js │ │ │ │ │ │ └── scatter.js │ │ │ │ │ ├── echarts.js │ │ │ │ │ └── theme │ │ │ │ │ │ ├── blue.js │ │ │ │ │ │ ├── dark.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── gray.js │ │ │ │ │ │ ├── green.js │ │ │ │ │ │ ├── helianthus.js │ │ │ │ │ │ ├── infographic.js │ │ │ │ │ │ ├── macarons.js │ │ │ │ │ │ ├── red.js │ │ │ │ │ │ └── shine.js │ │ │ │ ├── highcharts │ │ │ │ │ ├── adapters │ │ │ │ │ │ └── standalone-framework.js │ │ │ │ │ ├── highcharts-3d.js │ │ │ │ │ ├── highcharts-all.js │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highcharts.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ │ ├── data.js │ │ │ │ │ │ ├── drilldown.js │ │ │ │ │ │ ├── exporting.js │ │ │ │ │ │ ├── funnel.js │ │ │ │ │ │ ├── heatmap.js │ │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ │ └── solid-gauge.js │ │ │ │ │ └── themes │ │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ │ ├── dark-green.js │ │ │ │ │ │ ├── dark-unica.js │ │ │ │ │ │ ├── gray.js │ │ │ │ │ │ ├── grid-light.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── sand-signika.js │ │ │ │ │ │ └── skies.js │ │ │ │ ├── icheck │ │ │ │ │ ├── icheck.js │ │ │ │ │ └── icheck.min.js │ │ │ │ ├── kindeditor_4.1.10 │ │ │ │ │ ├── attached │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── editor-content.css │ │ │ │ │ ├── kindeditor-all-min.js │ │ │ │ │ ├── kindeditor-all.js │ │ │ │ │ ├── kindeditor-all.min.js │ │ │ │ │ ├── kindeditor-min.js │ │ │ │ │ ├── kindeditor.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── zh_CN.js │ │ │ │ │ │ └── zh_TW.js │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── php │ │ │ │ │ │ ├── JSON.php │ │ │ │ │ │ ├── demo.php │ │ │ │ │ │ ├── file_manager_json.php │ │ │ │ │ │ └── upload_json.php │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── anchor │ │ │ │ │ │ │ └── anchor.js │ │ │ │ │ │ ├── autoheight │ │ │ │ │ │ │ └── autoheight.js │ │ │ │ │ │ ├── baidumap │ │ │ │ │ │ │ ├── baidumap.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── map.html │ │ │ │ │ │ ├── clearhtml │ │ │ │ │ │ │ └── clearhtml.js │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ └── prettify.js │ │ │ │ │ │ ├── emoticons │ │ │ │ │ │ │ ├── emoticons.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ │ │ ├── 10.gif │ │ │ │ │ │ │ │ ├── 100.gif │ │ │ │ │ │ │ │ ├── 101.gif │ │ │ │ │ │ │ │ ├── 102.gif │ │ │ │ │ │ │ │ ├── 103.gif │ │ │ │ │ │ │ │ ├── 104.gif │ │ │ │ │ │ │ │ ├── 105.gif │ │ │ │ │ │ │ │ ├── 106.gif │ │ │ │ │ │ │ │ ├── 107.gif │ │ │ │ │ │ │ │ ├── 108.gif │ │ │ │ │ │ │ │ ├── 109.gif │ │ │ │ │ │ │ │ ├── 11.gif │ │ │ │ │ │ │ │ ├── 110.gif │ │ │ │ │ │ │ │ ├── 111.gif │ │ │ │ │ │ │ │ ├── 112.gif │ │ │ │ │ │ │ │ ├── 113.gif │ │ │ │ │ │ │ │ ├── 114.gif │ │ │ │ │ │ │ │ ├── 115.gif │ │ │ │ │ │ │ │ ├── 116.gif │ │ │ │ │ │ │ │ ├── 117.gif │ │ │ │ │ │ │ │ ├── 118.gif │ │ │ │ │ │ │ │ ├── 119.gif │ │ │ │ │ │ │ │ ├── 12.gif │ │ │ │ │ │ │ │ ├── 120.gif │ │ │ │ │ │ │ │ ├── 121.gif │ │ │ │ │ │ │ │ ├── 122.gif │ │ │ │ │ │ │ │ ├── 123.gif │ │ │ │ │ │ │ │ ├── 124.gif │ │ │ │ │ │ │ │ ├── 125.gif │ │ │ │ │ │ │ │ ├── 126.gif │ │ │ │ │ │ │ │ ├── 127.gif │ │ │ │ │ │ │ │ ├── 128.gif │ │ │ │ │ │ │ │ ├── 129.gif │ │ │ │ │ │ │ │ ├── 13.gif │ │ │ │ │ │ │ │ ├── 130.gif │ │ │ │ │ │ │ │ ├── 131.gif │ │ │ │ │ │ │ │ ├── 132.gif │ │ │ │ │ │ │ │ ├── 133.gif │ │ │ │ │ │ │ │ ├── 134.gif │ │ │ │ │ │ │ │ ├── 14.gif │ │ │ │ │ │ │ │ ├── 15.gif │ │ │ │ │ │ │ │ ├── 16.gif │ │ │ │ │ │ │ │ ├── 17.gif │ │ │ │ │ │ │ │ ├── 18.gif │ │ │ │ │ │ │ │ ├── 19.gif │ │ │ │ │ │ │ │ ├── 2.gif │ │ │ │ │ │ │ │ ├── 20.gif │ │ │ │ │ │ │ │ ├── 21.gif │ │ │ │ │ │ │ │ ├── 22.gif │ │ │ │ │ │ │ │ ├── 23.gif │ │ │ │ │ │ │ │ ├── 24.gif │ │ │ │ │ │ │ │ ├── 25.gif │ │ │ │ │ │ │ │ ├── 26.gif │ │ │ │ │ │ │ │ ├── 27.gif │ │ │ │ │ │ │ │ ├── 28.gif │ │ │ │ │ │ │ │ ├── 29.gif │ │ │ │ │ │ │ │ ├── 3.gif │ │ │ │ │ │ │ │ ├── 30.gif │ │ │ │ │ │ │ │ ├── 31.gif │ │ │ │ │ │ │ │ ├── 32.gif │ │ │ │ │ │ │ │ ├── 33.gif │ │ │ │ │ │ │ │ ├── 34.gif │ │ │ │ │ │ │ │ ├── 35.gif │ │ │ │ │ │ │ │ ├── 36.gif │ │ │ │ │ │ │ │ ├── 37.gif │ │ │ │ │ │ │ │ ├── 38.gif │ │ │ │ │ │ │ │ ├── 39.gif │ │ │ │ │ │ │ │ ├── 4.gif │ │ │ │ │ │ │ │ ├── 40.gif │ │ │ │ │ │ │ │ ├── 41.gif │ │ │ │ │ │ │ │ ├── 42.gif │ │ │ │ │ │ │ │ ├── 43.gif │ │ │ │ │ │ │ │ ├── 44.gif │ │ │ │ │ │ │ │ ├── 45.gif │ │ │ │ │ │ │ │ ├── 46.gif │ │ │ │ │ │ │ │ ├── 47.gif │ │ │ │ │ │ │ │ ├── 48.gif │ │ │ │ │ │ │ │ ├── 49.gif │ │ │ │ │ │ │ │ ├── 5.gif │ │ │ │ │ │ │ │ ├── 50.gif │ │ │ │ │ │ │ │ ├── 51.gif │ │ │ │ │ │ │ │ ├── 52.gif │ │ │ │ │ │ │ │ ├── 53.gif │ │ │ │ │ │ │ │ ├── 54.gif │ │ │ │ │ │ │ │ ├── 55.gif │ │ │ │ │ │ │ │ ├── 56.gif │ │ │ │ │ │ │ │ ├── 57.gif │ │ │ │ │ │ │ │ ├── 58.gif │ │ │ │ │ │ │ │ ├── 59.gif │ │ │ │ │ │ │ │ ├── 6.gif │ │ │ │ │ │ │ │ ├── 60.gif │ │ │ │ │ │ │ │ ├── 61.gif │ │ │ │ │ │ │ │ ├── 62.gif │ │ │ │ │ │ │ │ ├── 63.gif │ │ │ │ │ │ │ │ ├── 64.gif │ │ │ │ │ │ │ │ ├── 65.gif │ │ │ │ │ │ │ │ ├── 66.gif │ │ │ │ │ │ │ │ ├── 67.gif │ │ │ │ │ │ │ │ ├── 68.gif │ │ │ │ │ │ │ │ ├── 69.gif │ │ │ │ │ │ │ │ ├── 7.gif │ │ │ │ │ │ │ │ ├── 70.gif │ │ │ │ │ │ │ │ ├── 71.gif │ │ │ │ │ │ │ │ ├── 72.gif │ │ │ │ │ │ │ │ ├── 73.gif │ │ │ │ │ │ │ │ ├── 74.gif │ │ │ │ │ │ │ │ ├── 75.gif │ │ │ │ │ │ │ │ ├── 76.gif │ │ │ │ │ │ │ │ ├── 77.gif │ │ │ │ │ │ │ │ ├── 78.gif │ │ │ │ │ │ │ │ ├── 79.gif │ │ │ │ │ │ │ │ ├── 8.gif │ │ │ │ │ │ │ │ ├── 80.gif │ │ │ │ │ │ │ │ ├── 81.gif │ │ │ │ │ │ │ │ ├── 82.gif │ │ │ │ │ │ │ │ ├── 83.gif │ │ │ │ │ │ │ │ ├── 84.gif │ │ │ │ │ │ │ │ ├── 85.gif │ │ │ │ │ │ │ │ ├── 86.gif │ │ │ │ │ │ │ │ ├── 87.gif │ │ │ │ │ │ │ │ ├── 88.gif │ │ │ │ │ │ │ │ ├── 89.gif │ │ │ │ │ │ │ │ ├── 9.gif │ │ │ │ │ │ │ │ ├── 90.gif │ │ │ │ │ │ │ │ ├── 91.gif │ │ │ │ │ │ │ │ ├── 92.gif │ │ │ │ │ │ │ │ ├── 93.gif │ │ │ │ │ │ │ │ ├── 94.gif │ │ │ │ │ │ │ │ ├── 95.gif │ │ │ │ │ │ │ │ ├── 96.gif │ │ │ │ │ │ │ │ ├── 97.gif │ │ │ │ │ │ │ │ ├── 98.gif │ │ │ │ │ │ │ │ ├── 99.gif │ │ │ │ │ │ │ │ └── static.gif │ │ │ │ │ │ ├── filemanager │ │ │ │ │ │ │ ├── filemanager.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── file-16.gif │ │ │ │ │ │ │ │ ├── file-64.gif │ │ │ │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ │ │ │ └── go-up.gif │ │ │ │ │ │ ├── flash │ │ │ │ │ │ │ └── flash.js │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── image.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── align_left.gif │ │ │ │ │ │ │ │ ├── align_right.gif │ │ │ │ │ │ │ │ ├── align_top.gif │ │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ ├── insertfile │ │ │ │ │ │ │ └── insertfile.js │ │ │ │ │ │ ├── lineheight │ │ │ │ │ │ │ └── lineheight.js │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ ├── map │ │ │ │ │ │ │ ├── map.html │ │ │ │ │ │ │ └── map.js │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ └── media.js │ │ │ │ │ │ ├── multiimage │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ │ │ │ └── swfupload.swf │ │ │ │ │ │ │ └── multiimage.js │ │ │ │ │ │ ├── pagebreak │ │ │ │ │ │ │ └── pagebreak.js │ │ │ │ │ │ ├── plainpaste │ │ │ │ │ │ │ └── plainpaste.js │ │ │ │ │ │ ├── preview │ │ │ │ │ │ │ └── preview.js │ │ │ │ │ │ ├── quickformat │ │ │ │ │ │ │ └── quickformat.js │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ └── table.js │ │ │ │ │ │ ├── template │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ ├── 1.html │ │ │ │ │ │ │ │ ├── 2.html │ │ │ │ │ │ │ │ └── 3.html │ │ │ │ │ │ │ └── template.js │ │ │ │ │ │ └── wordpaste │ │ │ │ │ │ │ └── wordpaste.js │ │ │ │ │ └── themes │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── flash.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── media.gif │ │ │ │ │ │ └── rm.gif │ │ │ │ │ │ ├── default │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── default.css │ │ │ │ │ │ └── default.png │ │ │ │ │ │ ├── qq │ │ │ │ │ │ ├── editor.gif │ │ │ │ │ │ └── qq.css │ │ │ │ │ │ └── simple │ │ │ │ │ │ └── simple.css │ │ │ │ ├── niceValidator │ │ │ │ │ ├── images │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── validator_default.png │ │ │ │ │ │ └── validator_simple.png │ │ │ │ │ ├── jquery.validator.css │ │ │ │ │ ├── jquery.validator.js │ │ │ │ │ ├── jquery.validator.themes.js │ │ │ │ │ └── local │ │ │ │ │ │ └── en.js │ │ │ │ ├── other │ │ │ │ │ ├── jquery.autosize.js │ │ │ │ │ └── respond.js │ │ │ │ ├── styles │ │ │ │ │ └── zTreeStyle │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── diy │ │ │ │ │ │ │ ├── 1_close.png │ │ │ │ │ │ │ ├── 1_open.png │ │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ │ └── 9.png │ │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── zTreeStandard.gif │ │ │ │ │ │ └── zTreeStandard.png │ │ │ │ │ │ └── zTreeStyle.css │ │ │ │ ├── swfupload │ │ │ │ │ ├── swfupload.js │ │ │ │ │ └── swfupload.min.js │ │ │ │ ├── uploadify │ │ │ │ │ ├── css │ │ │ │ │ │ └── uploadify.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── add.jpg │ │ │ │ │ │ ├── cancel.jpg │ │ │ │ │ │ ├── delete.jpg │ │ │ │ │ │ ├── upload.jpg │ │ │ │ │ │ └── uploadify-cancel.png │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── jquery.uploadify.js │ │ │ │ │ │ ├── jquery.uploadify.min.js │ │ │ │ │ │ └── uploadify.swf │ │ │ │ └── ztree │ │ │ │ │ ├── jquery.ztree.all-3.5.js │ │ │ │ │ ├── jquery.ztree.all-3.5.min.js │ │ │ │ │ ├── jquery.ztree.core-3.5.js │ │ │ │ │ ├── jquery.ztree.core-3.5.min.js │ │ │ │ │ ├── jquery.ztree.excheck-3.5.js │ │ │ │ │ ├── jquery.ztree.excheck-3.5.min.js │ │ │ │ │ ├── jquery.ztree.exedit-3.5.js │ │ │ │ │ ├── jquery.ztree.exedit-3.5.min.js │ │ │ │ │ ├── jquery.ztree.exhide-3.5.js │ │ │ │ │ └── jquery.ztree.exhide-3.5.min.js │ │ │ └── themes │ │ │ │ ├── blue │ │ │ │ ├── core.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── topbg.png │ │ │ │ └── zTreeStandard.png │ │ │ │ ├── css │ │ │ │ ├── FA │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── ie7.css │ │ │ │ ├── img │ │ │ │ │ ├── changed-flag-icon.png │ │ │ │ │ ├── diy │ │ │ │ │ │ ├── 1_close.png │ │ │ │ │ │ ├── 1_open.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ └── 9.png │ │ │ │ │ ├── error-bg.png │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ ├── line_conn.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ └── logo.png │ │ │ │ └── style.css │ │ │ │ ├── default │ │ │ │ ├── core.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── topbg.png │ │ │ │ └── zTreeStandard.png │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── green │ │ │ │ ├── core.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── topbg.png │ │ │ │ └── zTreeStandard.png │ │ │ │ ├── orange │ │ │ │ ├── core.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── topbg.png │ │ │ │ └── zTreeStandard.png │ │ │ │ └── purple │ │ │ │ ├── core.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── topbg.png │ │ │ │ └── zTreeStandard.png │ │ └── favicon.ico │ │ └── templates │ │ ├── admin │ │ ├── acctInfo │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── acctLog │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── areaInfo │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── item │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── itemSupply │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ ├── relevance.ftl │ │ │ └── view.ftl │ │ ├── merchantInfo │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── mobileInfo │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── orderSupply │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── orderTrade │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── orderTradePay │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── supplyInfo │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ ├── lookup.ftl │ │ │ └── view.ftl │ │ ├── sysLogLogin │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── sysLogOpt │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── sysMenu │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── sysMenuRole │ │ │ └── set.ftl │ │ ├── sysPlatform │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── sysRole │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ └── view.ftl │ │ ├── sysRoleUser │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── list.ftl │ │ │ ├── set.ftl │ │ │ └── view.ftl │ │ └── sysUserInfo │ │ │ ├── add.ftl │ │ │ ├── edit.ftl │ │ │ ├── info.ftl │ │ │ ├── list.ftl │ │ │ ├── lookup.ftl │ │ │ ├── password.ftl │ │ │ └── view.ftl │ │ ├── context.ftl │ │ ├── index.ftl │ │ ├── login.ftl │ │ ├── macro │ │ ├── base.ftl │ │ ├── menu.ftl │ │ └── nav.ftl │ │ └── timeout.ftl │ └── test │ └── java │ └── com │ └── roncoo │ └── recharge │ ├── AddComments.java │ └── BossApplicationTests.java ├── roncoo-recharge-common ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── roncoo │ │ └── recharge │ │ └── common │ │ ├── dao │ │ ├── AcctInfoDao.java │ │ ├── AcctLogDao.java │ │ ├── AreaInfoDao.java │ │ ├── ItemDao.java │ │ ├── ItemSupplyDao.java │ │ ├── MerchantInfoDao.java │ │ ├── MobileInfoDao.java │ │ ├── OrderSupplyDao.java │ │ ├── OrderTradeDao.java │ │ ├── OrderTradePayDao.java │ │ ├── SupplyInfoDao.java │ │ ├── SysLogLoginDao.java │ │ ├── SysLogOptDao.java │ │ ├── SysMenuDao.java │ │ ├── SysMenuRoleDao.java │ │ ├── SysPlatformDao.java │ │ ├── SysRoleDao.java │ │ ├── SysRoleUserDao.java │ │ ├── SysUserInfoDao.java │ │ └── impl │ │ │ ├── AcctInfoDaoImpl.java │ │ │ ├── AcctLogDaoImpl.java │ │ │ ├── AreaInfoDaoImpl.java │ │ │ ├── ItemDaoImpl.java │ │ │ ├── ItemSupplyDaoImpl.java │ │ │ ├── MerchantInfoDaoImpl.java │ │ │ ├── MobileInfoDaoImpl.java │ │ │ ├── OrderSupplyDaoImpl.java │ │ │ ├── OrderTradeDaoImpl.java │ │ │ ├── OrderTradePayDaoImpl.java │ │ │ ├── SupplyInfoDaoImpl.java │ │ │ ├── SysLogLoginDaoImpl.java │ │ │ ├── SysLogOptDaoImpl.java │ │ │ ├── SysMenuDaoImpl.java │ │ │ ├── SysMenuRoleDaoImpl.java │ │ │ ├── SysPlatformDaoImpl.java │ │ │ ├── SysRoleDaoImpl.java │ │ │ ├── SysRoleUserDaoImpl.java │ │ │ ├── SysUserInfoDaoImpl.java │ │ │ └── mapper │ │ │ ├── AcctInfoMapper.java │ │ │ ├── AcctLogMapper.java │ │ │ ├── AreaInfoMapper.java │ │ │ ├── ItemMapper.java │ │ │ ├── ItemSupplyMapper.java │ │ │ ├── MerchantInfoMapper.java │ │ │ ├── MobileInfoMapper.java │ │ │ ├── OrderSupplyMapper.java │ │ │ ├── OrderTradeMapper.java │ │ │ ├── OrderTradePayMapper.java │ │ │ ├── SchemaVersionMapper.java │ │ │ ├── SupplyInfoMapper.java │ │ │ ├── SysLogLoginMapper.java │ │ │ ├── SysLogOptMapper.java │ │ │ ├── SysMenuMapper.java │ │ │ ├── SysMenuRoleMapper.java │ │ │ ├── SysPlatformMapper.java │ │ │ ├── SysRoleMapper.java │ │ │ ├── SysRoleUserMapper.java │ │ │ └── SysUserInfoMapper.java │ │ ├── entity │ │ ├── AcctInfo.java │ │ ├── AcctInfoExample.java │ │ ├── AcctLog.java │ │ ├── AcctLogExample.java │ │ ├── AreaInfo.java │ │ ├── AreaInfoExample.java │ │ ├── Item.java │ │ ├── ItemExample.java │ │ ├── ItemSupply.java │ │ ├── ItemSupplyExample.java │ │ ├── MerchantInfo.java │ │ ├── MerchantInfoExample.java │ │ ├── MobileInfo.java │ │ ├── MobileInfoExample.java │ │ ├── OrderSupply.java │ │ ├── OrderSupplyExample.java │ │ ├── OrderTrade.java │ │ ├── OrderTradeExample.java │ │ ├── OrderTradePay.java │ │ ├── OrderTradePayExample.java │ │ ├── SchemaVersion.java │ │ ├── SchemaVersionExample.java │ │ ├── SupplyInfo.java │ │ ├── SupplyInfoExample.java │ │ ├── SysLogLogin.java │ │ ├── SysLogLoginExample.java │ │ ├── SysLogOpt.java │ │ ├── SysLogOptExample.java │ │ ├── SysMenu.java │ │ ├── SysMenuExample.java │ │ ├── SysMenuRole.java │ │ ├── SysMenuRoleExample.java │ │ ├── SysPlatform.java │ │ ├── SysPlatformExample.java │ │ ├── SysRole.java │ │ ├── SysRoleExample.java │ │ ├── SysRoleUser.java │ │ ├── SysRoleUserExample.java │ │ ├── SysUserInfo.java │ │ └── SysUserInfoExample.java │ │ └── manager │ │ ├── AcctInfoManager.java │ │ ├── NotifyMsgManager.java │ │ └── impl │ │ ├── AcctInfoManagerImpl.java │ │ ├── NotifyMsgManagerMqImpl.java │ │ └── NotifyMsgManagerWechatImpl.java │ └── resources │ ├── application-local.properties │ └── mybatis │ ├── AcctInfoMapper.xml │ ├── AcctLogMapper.xml │ ├── AreaInfoMapper.xml │ ├── ItemMapper.xml │ ├── ItemSupplyMapper.xml │ ├── MerchantInfoMapper.xml │ ├── MobileInfoMapper.xml │ ├── OrderSupplyMapper.xml │ ├── OrderTradeMapper.xml │ ├── OrderTradePayMapper.xml │ ├── SchemaVersionMapper.xml │ ├── SupplyInfoMapper.xml │ ├── SysLogLoginMapper.xml │ ├── SysLogOptMapper.xml │ ├── SysMenuMapper.xml │ ├── SysMenuRoleMapper.xml │ ├── SysPlatformMapper.xml │ ├── SysRoleMapper.xml │ ├── SysRoleUserMapper.xml │ └── SysUserInfoMapper.xml ├── roncoo-recharge-crontab ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── roncoo │ └── recharge │ ├── CrontabApplication.java │ └── crontab │ └── task │ └── OrderTask.java ├── roncoo-recharge-gateway ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── roncoo │ │ │ └── recharge │ │ │ ├── GatewayApplication.java │ │ │ └── gateway │ │ │ ├── boss │ │ │ ├── BossQueryController.java │ │ │ ├── BossRepairController.java │ │ │ ├── biz │ │ │ │ ├── BossQueryBiz.java │ │ │ │ └── BossRepairBiz.java │ │ │ └── package-info.java │ │ │ ├── common │ │ │ ├── GatewayExceptionHandler.java │ │ │ └── WebMvcConfigurer.java │ │ │ ├── controller │ │ │ ├── BalanceController.java │ │ │ ├── ExchangeController.java │ │ │ ├── RechargeController.java │ │ │ └── package-info.java │ │ │ └── service │ │ │ ├── BalanceService.java │ │ │ ├── ExchangeService.java │ │ │ ├── RechargeService.java │ │ │ └── manager │ │ │ ├── ExchangeManager.java │ │ │ ├── RechargeManager.java │ │ │ └── impl │ │ │ ├── ExchargeManagerImpl.java │ │ │ └── RechargeManagerImpl.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── roncoo │ └── recharge │ └── gateway │ └── test │ ├── GatewayApplicationTests.java │ └── gateway │ ├── ExchangeCardTest.java │ ├── RechargeFlowTest.java │ └── RechargeTelephoneTest.java └── roncoo-recharge-util ├── pom.xml └── src └── main ├── java └── com │ └── roncoo │ └── recharge │ └── util │ ├── ArrayListUtil.java │ ├── BigDecimalUtils.java │ ├── ConfigUtil.java │ ├── Constants.java │ ├── HttpRestUtil.java │ ├── IdWorker.java │ ├── JSONUtil.java │ ├── MapObjectUtil.java │ ├── NOUtil.java │ ├── Native2AsciiUtil.java │ ├── PingyinUtil.java │ ├── SignUtil.java │ ├── VCUtil.java │ ├── VerificationCodeUtil.java │ ├── base │ ├── AbstractBaseJdbc.java │ ├── BaseController.java │ ├── BaseRoncoo.java │ └── Result.java │ ├── bjui │ ├── Bjui.java │ ├── Page.java │ └── PageUtil.java │ ├── enums │ ├── ApiVerifyTypeEnum.java │ ├── BillStatusEnum.java │ ├── BillTypeEnum.java │ ├── CarrierTypeEnum.java │ ├── ChannelEnum.java │ ├── FlowModeEnum.java │ ├── FlowPackageTypeEnum.java │ ├── FlowScopeEnum.java │ ├── FlowStreamTypeEnum.java │ ├── ItemCategoryEnum.java │ ├── ItemStatusEnum.java │ ├── ItemTypeEnum.java │ ├── LossTypeEnum.java │ ├── OrderStatusEnum.java │ ├── PayStatusEnum.java │ ├── PayTypeEnum.java │ ├── PriceLevelEnum.java │ ├── RepeatTypeEnum.java │ ├── ResultEnum.java │ ├── StatusIdEnum.java │ ├── SupplyCategoryEnum.java │ ├── TradeStatusEnum.java │ ├── TradeTypeEnum.java │ ├── TxVerifyTypeEnum.java │ └── UserTypeEnum.java │ └── exception │ └── BaseException.java └── resources ├── banner.txt ├── config.properties └── config └── test └── config.properties /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/target/ 2 | *.project 3 | *.classpath 4 | *.project 5 | *.settings 6 | *.mvn 7 | *.project 8 | *.springBeans 9 | *.factorypath 10 | */src/main/resources/config/prod/ 11 | */src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /doc/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/1.png -------------------------------------------------------------------------------- /doc/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/2.png -------------------------------------------------------------------------------- /doc/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/3.png -------------------------------------------------------------------------------- /doc/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/4.png -------------------------------------------------------------------------------- /doc/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/5.png -------------------------------------------------------------------------------- /doc/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/6.png -------------------------------------------------------------------------------- /doc/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/7.png -------------------------------------------------------------------------------- /doc/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/8.png -------------------------------------------------------------------------------- /doc/images/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/90.png -------------------------------------------------------------------------------- /doc/images/lombok1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/images/lombok1.png -------------------------------------------------------------------------------- /doc/lombok.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/doc/lombok.jar -------------------------------------------------------------------------------- /roncoo-recharge-api/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | 5 | com.roncoo.recharge 6 | roncoo-recharge 7 | 1.0.0 8 | 9 | 10 | roncoo-recharge-api 11 | pom 12 | 13 | 14 | roncoo-recharge-api-core 15 | roncoo-recharge-api-longguo 16 | roncoo-recharge-api-roncoo 17 | 18 | 19 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/.gitignore: -------------------------------------------------------------------------------- 1 | */target/ 2 | *.project 3 | *.classpath 4 | *.project 5 | *.settings 6 | *.mvn 7 | *.project 8 | *.springBeans 9 | *.factorypath 10 | */src/main/resources/config/prod/ 11 | */src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | com.roncoo.recharge 7 | roncoo-recharge-api 8 | 1.0.0 9 | 10 | roncoo-recharge-api-core 11 | jar 12 | 13 | roncoo-recharge-api-core 14 | 龙果充值-接口 15 | 16 | 17 | 18 | com.roncoo.recharge 19 | roncoo-recharge-util 20 | 21 | 22 | 23 | org.springframework.boot 24 | spring-boot-starter-web 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/BalanceBO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | 6 | import lombok.Data; 7 | import lombok.EqualsAndHashCode; 8 | 9 | /** 10 | * 余额-请求实体 11 | */ 12 | @Data 13 | @EqualsAndHashCode(callSuper = true) 14 | public class BalanceBO extends BaseBO { 15 | private static final long serialVersionUID = 1L; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/BaseBO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | 10 | /** 11 | * 请求实体 12 | */ 13 | @Data 14 | public class BaseBO implements Serializable { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private String paraRequestUrl; 19 | 20 | private String paraQueryUrl; 21 | 22 | private String paraBalanceUrl; 23 | 24 | private String paraUserId; 25 | 26 | private String paraKey; 27 | 28 | private String paraSeceret; 29 | 30 | private String paraExt1; 31 | 32 | private String paraExt2; 33 | 34 | private String paraExt3; 35 | 36 | private String paraExt4; 37 | 38 | private String paraExt5; 39 | 40 | } 41 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/ExchangeBO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | 6 | import lombok.Data; 7 | import lombok.EqualsAndHashCode; 8 | 9 | /** 10 | * 卡密充值-请求实体 11 | */ 12 | @Data 13 | @EqualsAndHashCode(callSuper = true) 14 | public class ExchangeBO extends BaseBO { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private String amount; 19 | 20 | private String cardNo; 21 | 22 | private String cardPwd; 23 | 24 | private String supplySerialNo; 25 | 26 | private String notifyUrl; 27 | 28 | } 29 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/ExchangeNotifyBO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | 6 | import java.io.Serializable; 7 | import java.util.TreeMap; 8 | 9 | import lombok.Data; 10 | 11 | /** 12 | * 卡密回调通知-请求实体 13 | */ 14 | @Data 15 | public class ExchangeNotifyBO implements Serializable { 16 | 17 | private static final long serialVersionUID = 1L; 18 | 19 | private String supplyCode; 20 | 21 | private String supplyName; 22 | 23 | private String compayName; 24 | 25 | private String paraUserId; 26 | 27 | private String paraKey; 28 | 29 | private String paraSeceret; 30 | 31 | private String paraExt1; 32 | 33 | private String paraExt2; 34 | 35 | private String paraExt3; 36 | 37 | private String paraExt4; 38 | 39 | private String paraExt5; 40 | 41 | TreeMap paramMap; 42 | } 43 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/ExchangeOrderBO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.EqualsAndHashCode; 10 | 11 | /** 12 | * 订单查询-请求实体 13 | */ 14 | @Data 15 | @EqualsAndHashCode(callSuper = true) 16 | public class ExchangeOrderBO extends BaseBO implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | private Long tradeNo; 21 | 22 | private Long serialNo; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/RechargeBO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | 6 | import lombok.Data; 7 | import lombok.EqualsAndHashCode; 8 | 9 | /** 10 | * 充值-请求实体 11 | */ 12 | @Data 13 | @EqualsAndHashCode(callSuper = true) 14 | public class RechargeBO extends BaseBO { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private String notifyUrl; // 平台接收上游的回调地址 19 | 20 | private String mobile; // 手机号 21 | 22 | private String amount; // 数量 23 | 24 | private String supplySerialNo; // 平台发送给上游订单号 25 | 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/RechargeNotifyBO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | 6 | import java.io.Serializable; 7 | import java.util.TreeMap; 8 | 9 | import lombok.Data; 10 | 11 | /** 12 | * 流量回调通知-请求实体 13 | */ 14 | @Data 15 | public class RechargeNotifyBO implements Serializable { 16 | 17 | private static final long serialVersionUID = 1L; 18 | 19 | private String supplyCode; 20 | 21 | private String supplyName; 22 | 23 | private String compayName; 24 | 25 | private String paraUserId; 26 | 27 | private String paraKey; 28 | 29 | private String paraSeceret; 30 | 31 | private String paraExt1; 32 | 33 | private String paraExt2; 34 | 35 | private String paraExt3; 36 | 37 | private String paraExt4; 38 | 39 | private String paraExt5; 40 | 41 | TreeMap paramMap; 42 | } 43 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/RechargeOrderBO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | 6 | import lombok.Data; 7 | import lombok.EqualsAndHashCode; 8 | 9 | /** 10 | * 订单查询-请求实体 11 | */ 12 | @Data 13 | @EqualsAndHashCode(callSuper = true) 14 | public class RechargeOrderBO extends BaseBO { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private Long tradeNo; 19 | 20 | private Long serialNo; 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/bo/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.bo; 5 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/dto/BalanceDTO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.dto; 5 | 6 | import java.io.Serializable; 7 | 8 | import com.roncoo.recharge.util.enums.TradeStatusEnum; 9 | 10 | import lombok.Data; 11 | 12 | /** 13 | * 卡密兑换-返回实体 14 | */ 15 | @Data 16 | public class BalanceDTO implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | private TradeStatusEnum tradeStatusEnum = TradeStatusEnum.FAIL; // 默认 21 | 22 | private String errorMsg; // 失败原因 23 | 24 | private String balance; 25 | 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/dto/ExchangeDTO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.dto; 5 | 6 | import java.io.Serializable; 7 | 8 | import com.roncoo.recharge.util.enums.TradeStatusEnum; 9 | 10 | import lombok.Data; 11 | 12 | /** 13 | * 卡密兑换-返回实体 14 | */ 15 | @Data 16 | public class ExchangeDTO implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | // 必填字段-开始 21 | private TradeStatusEnum tradeStatusEnum = TradeStatusEnum.FAIL; // 默认 22 | 23 | private String errorMsg; // 失败原因 24 | 25 | private Long supplySerialNo; // 上游供货流水号 26 | // 必填字段-结束 27 | 28 | private String appId; 29 | 30 | private String amount; 31 | 32 | private String cardNo; 33 | 34 | private String cardPwd; 35 | 36 | private String orderNo; 37 | 38 | private String tradeNo; 39 | 40 | } 41 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/dto/ExchangeNotifyDTO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.dto; 5 | 6 | import java.io.Serializable; 7 | 8 | import com.roncoo.recharge.util.enums.TradeStatusEnum; 9 | 10 | import lombok.Data; 11 | 12 | /** 13 | * 卡密回调通知-返回实体 14 | */ 15 | @Data 16 | public class ExchangeNotifyDTO implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | // 必填字段-开始 21 | private TradeStatusEnum tradeStatusEnum = TradeStatusEnum.FAIL; // 默认 22 | 23 | private String returnMsg; // 回调需要返回上游信息 24 | 25 | private String errorMsg; // 失败原因 26 | 27 | private Long supplySerialNo; // 上游供货流水号 28 | // 必填字段-结束 29 | 30 | private String cardNo; 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/dto/ExchangeOrderDTO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.dto; 5 | 6 | import java.io.Serializable; 7 | 8 | import com.roncoo.recharge.util.enums.TradeStatusEnum; 9 | 10 | import lombok.Data; 11 | 12 | /** 13 | * 卡密兑换-返回实体 14 | */ 15 | @Data 16 | public class ExchangeOrderDTO implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | private TradeStatusEnum tradeStatusEnum = TradeStatusEnum.FAIL; // 默认 21 | 22 | private String errorMsg; // 失败原因 23 | 24 | private String tradeNo; 25 | 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/dto/RechargeDTO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.dto; 5 | 6 | import java.io.Serializable; 7 | 8 | import com.roncoo.recharge.util.enums.TradeStatusEnum; 9 | 10 | import lombok.Data; 11 | 12 | /** 13 | * 流量充值-返回实体 14 | */ 15 | @Data 16 | public class RechargeDTO implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | // 必填字段-开始 21 | private TradeStatusEnum tradeStatusEnum = TradeStatusEnum.FAIL; // 默认 22 | 23 | private String errorMsg = ""; // 失败原因 24 | 25 | private Long supplySerialNo; // 上游供货流水号 26 | // 必填字段-结束 27 | 28 | private String mobile; 29 | 30 | } 31 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/dto/RechargeNotifyDTO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.dto; 5 | 6 | import java.io.Serializable; 7 | 8 | import com.roncoo.recharge.util.enums.TradeStatusEnum; 9 | 10 | import lombok.Data; 11 | 12 | /** 13 | * 流量回调通知-返回实体 14 | */ 15 | @Data 16 | public class RechargeNotifyDTO implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | // 必填字段-开始 21 | private TradeStatusEnum tradeStatusEnum = TradeStatusEnum.FAIL; // 默认 22 | 23 | private String returnMsg; // 回调需要返回上游信息 24 | 25 | private String errorMsg; // 失败原因 26 | 27 | private Long supplySerialNo; // 上游供货流水号 28 | // 必填字段-结束 29 | } 30 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/dto/RechargeOrderDTO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.dto; 5 | 6 | import java.io.Serializable; 7 | 8 | import com.roncoo.recharge.util.enums.TradeStatusEnum; 9 | 10 | import lombok.Data; 11 | 12 | /** 13 | * 卡密兑换-返回实体 14 | */ 15 | @Data 16 | public class RechargeOrderDTO implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | private TradeStatusEnum tradeStatusEnum = TradeStatusEnum.FAIL; // 默认 21 | 22 | private String errorMsg; // 失败原因 23 | 24 | private String tradeNo; 25 | 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/dto/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.dto; 5 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/facade/BalanceFacade.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.facade; 5 | 6 | import com.roncoo.recharge.api.bo.BalanceBO; 7 | import com.roncoo.recharge.api.dto.BalanceDTO; 8 | 9 | /** 10 | * 查询接口
11 | * 12 | * 说明:实现类必须保证不能向接口抛异常 13 | */ 14 | public interface BalanceFacade { 15 | 16 | /** 17 | * 余额查询接口 18 | */ 19 | BalanceDTO balance(BalanceBO balanceBO); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/facade/ExchangeFacade.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.facade; 5 | 6 | import com.roncoo.recharge.api.bo.ExchangeBO; 7 | import com.roncoo.recharge.api.bo.ExchangeNotifyBO; 8 | import com.roncoo.recharge.api.bo.ExchangeOrderBO; 9 | import com.roncoo.recharge.api.dto.ExchangeDTO; 10 | import com.roncoo.recharge.api.dto.ExchangeNotifyDTO; 11 | import com.roncoo.recharge.api.dto.ExchangeOrderDTO; 12 | 13 | /** 14 | * 兑换接口
15 | * 16 | * 说明:实现类必须保证不能向接口抛异常 17 | */ 18 | public interface ExchangeFacade { 19 | 20 | /** 21 | * 兑换接口 22 | */ 23 | ExchangeDTO exchange(ExchangeBO exchangeBO); 24 | 25 | /** 26 | * 校验接口 27 | */ 28 | ExchangeNotifyDTO verify(ExchangeNotifyBO exchangeNotifyBO); 29 | 30 | /** 31 | * 订单查询接口 32 | */ 33 | ExchangeOrderDTO order(ExchangeOrderBO exchangeOrderBO); 34 | 35 | } 36 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/facade/RechargeFacade.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.facade; 5 | 6 | import com.roncoo.recharge.api.bo.RechargeBO; 7 | import com.roncoo.recharge.api.bo.RechargeNotifyBO; 8 | import com.roncoo.recharge.api.bo.RechargeOrderBO; 9 | import com.roncoo.recharge.api.dto.RechargeDTO; 10 | import com.roncoo.recharge.api.dto.RechargeNotifyDTO; 11 | import com.roncoo.recharge.api.dto.RechargeOrderDTO; 12 | 13 | /** 14 | * 充值接口
15 | * 16 | * 说明:实现类必须保证不能向接口抛异常 17 | */ 18 | public interface RechargeFacade { 19 | 20 | /** 21 | * 充值 22 | */ 23 | RechargeDTO recharge(RechargeBO rechargeBO); 24 | 25 | /** 26 | * 校验 27 | */ 28 | RechargeNotifyDTO verify(RechargeNotifyBO rechargeNotifyBO); 29 | 30 | /** 31 | * 订单查询接口 32 | */ 33 | RechargeOrderDTO order(RechargeOrderBO rechargeOrderBO); 34 | 35 | } 36 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/facade/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.facade; 5 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/request/BalanceRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.request; 5 | 6 | import java.io.Serializable; 7 | 8 | import javax.validation.constraints.NotNull; 9 | 10 | import lombok.Data; 11 | 12 | /** 13 | * 余额查询 14 | */ 15 | @Data 16 | public class BalanceRequest implements Serializable { 17 | 18 | private static final long serialVersionUID = 1L; 19 | 20 | @NotNull(message = "APPID[appId]不能为空") 21 | private String appId; 22 | 23 | @NotNull(message = "数据签名[sign]不能为空") 24 | private String sign; 25 | 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/request/ExchangeOrderRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.request; 5 | 6 | import java.io.Serializable; 7 | 8 | import javax.validation.constraints.NotNull; 9 | import javax.validation.constraints.Size; 10 | 11 | import lombok.Data; 12 | 13 | /** 14 | * 订单查询 15 | */ 16 | @Data 17 | public class ExchangeOrderRequest implements Serializable { 18 | 19 | private static final long serialVersionUID = 1L; 20 | 21 | @NotNull(message = "APPID[appId]不能为空") 22 | private String appId; 23 | 24 | @Size(max = 30, message = "订单号[orderNo]长度最大30位") 25 | @NotNull(message = "订单号[orderNo]不能为空") 26 | private String orderNo; 27 | 28 | @Size(max = 14, message = "交易号[tradeNo]长度最大20位") 29 | @NotNull(message = "交易号[tradeNo]不能为空") 30 | private Long tradeNo; 31 | 32 | @NotNull(message = "数据签名[sign]不能为空") 33 | private String sign; 34 | 35 | } 36 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/request/RechargeOrderRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.request; 5 | 6 | import java.io.Serializable; 7 | 8 | import javax.validation.constraints.NotNull; 9 | import javax.validation.constraints.Size; 10 | 11 | import lombok.Data; 12 | 13 | /** 14 | * 订单查询 15 | */ 16 | @Data 17 | public class RechargeOrderRequest implements Serializable { 18 | 19 | private static final long serialVersionUID = 1L; 20 | 21 | @NotNull(message = "APPID[appId]不能为空") 22 | private String appId; 23 | 24 | @Size(max = 30, message = "订单号[orderNo]长度最大30位") 25 | @NotNull(message = "订单号[orderNo]不能为空") 26 | private String orderNo; 27 | 28 | @Size(max = 14, message = "交易号[tradeNo]长度最大20位") 29 | @NotNull(message = "交易号[tradeNo]不能为空") 30 | private Long tradeNo; 31 | 32 | @NotNull(message = "数据签名[sign]不能为空") 33 | private String sign; 34 | 35 | } 36 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/response/BalanceResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.response; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | 10 | /** 11 | * 余额查询-返回下游实体 12 | */ 13 | @Data 14 | public class BalanceResponse implements Serializable { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private Long totalBalance; 19 | 20 | } 21 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/response/ExchangeOrderResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.response; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | 10 | /** 11 | * 订单查询-返回下游实体 12 | */ 13 | @Data 14 | public class ExchangeOrderResponse implements Serializable { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private String orderNo; 19 | 20 | private Long tradeNo; 21 | 22 | private String productNo; 23 | 24 | private Integer productType; 25 | 26 | private String moblie; 27 | 28 | private String facePrice; 29 | 30 | private Integer salesPrice; 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/response/ExchangeResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.response; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | 10 | /** 11 | * 卡密兑换-返回下游实体 12 | */ 13 | @Data 14 | public class ExchangeResponse implements Serializable { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private String amount; 19 | 20 | private String cardNo; 21 | 22 | private String orderNo; 23 | 24 | private String tradeNo; 25 | 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/response/RechargeOrderResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.response; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | 10 | /** 11 | * 订单查询-返回下游实体 12 | */ 13 | @Data 14 | public class RechargeOrderResponse implements Serializable { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private String orderNo; 19 | 20 | private Long tradeNo; 21 | 22 | private String productNo; 23 | 24 | private Integer productType; 25 | 26 | private String moblie; 27 | 28 | private Integer facePrice; 29 | 30 | private Integer salesPrice; 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-core/src/main/java/com/roncoo/recharge/api/response/RechargeResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.api.response; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | 10 | /** 11 | * 流量充值-返回下游实体 12 | */ 13 | @Data 14 | public class RechargeResponse implements Serializable { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private String moblie; 19 | 20 | private String orderNo; 21 | 22 | private String tradeNo; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-longguo/.gitignore: -------------------------------------------------------------------------------- 1 | */target/ 2 | *.project 3 | *.classpath 4 | *.project 5 | *.settings 6 | *.mvn 7 | *.project 8 | *.springBeans 9 | *.factorypath 10 | */src/main/resources/config/prod/ 11 | */src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-longguo/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.roncoo.recharge 6 | roncoo-recharge-api 7 | 1.0.0 8 | 9 | roncoo-recharge-api-longguo 10 | 11 | 12 | 13 | com.roncoo.recharge 14 | roncoo-recharge-api-core 15 | 16 | 17 | -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-roncoo/.gitignore: -------------------------------------------------------------------------------- 1 | */target/ 2 | *.project 3 | *.classpath 4 | *.project 5 | *.settings 6 | *.mvn 7 | *.project 8 | *.springBeans 9 | *.factorypath 10 | */src/main/resources/config/prod/ 11 | */src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /roncoo-recharge-api/roncoo-recharge-api-roncoo/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | com.roncoo.recharge 7 | roncoo-recharge-api 8 | 1.0.0 9 | 10 | roncoo-recharge-api-roncoo 11 | 12 | 13 | com.roncoo.recharge 14 | roncoo-recharge-api-core 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/BossApplication.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge; 5 | 6 | import org.springframework.boot.SpringApplication; 7 | import org.springframework.boot.autoconfigure.SpringBootApplication; 8 | 9 | @SpringBootApplication 10 | public class BossApplication { 11 | 12 | public static void main(String[] args) { 13 | SpringApplication.run(BossApplication.class, args); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/AcctInfoQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 账户信息 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class AcctInfoQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | private Long id; 27 | private Date gmtCreate; 28 | private Date gmtModified; 29 | /** 30 | * 1 正常 2 冻结 9注销 31 | */ 32 | private Integer statusId; 33 | /** 34 | * 用户ID 35 | */ 36 | private Long userInfoId; 37 | /** 38 | * 总余额 39 | */ 40 | private Long totalBalance; 41 | /** 42 | * 最后交易余额 43 | */ 44 | private Long lastTradeBalance; 45 | /** 46 | * 最后交易时间 47 | */ 48 | private Date lastTradeDate; 49 | /** 50 | * 校验码 51 | */ 52 | private String verificationCode; 53 | } 54 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/AreaInfoQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | *

13 | * 14 | *

15 | * 16 | * @author wujing 17 | * @since 2017-12-30 18 | */ 19 | @Data 20 | @Accessors(chain = true) 21 | public class AreaInfoQO implements Serializable { 22 | 23 | private static final long serialVersionUID = 1L; 24 | 25 | private Long id; 26 | /** 27 | * 省编号 28 | */ 29 | private String provinceCode; 30 | /** 31 | * 市编号 32 | */ 33 | private String cityCode; 34 | /** 35 | * 区号 36 | */ 37 | private String areaCode; 38 | /** 39 | * 省名称 40 | */ 41 | private String provinceName; 42 | /** 43 | * 市名称 44 | */ 45 | private String cityName; 46 | /** 47 | * 分类:1.省 2 市 48 | */ 49 | private Integer areaType; 50 | } 51 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/MobileInfoQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | *

13 | * 14 | *

15 | * 16 | * @author wujing 17 | * @since 2018-01-06 18 | */ 19 | @Data 20 | @Accessors(chain = true) 21 | public class MobileInfoQO implements Serializable { 22 | 23 | private static final long serialVersionUID = 1L; 24 | 25 | private Long id; 26 | /** 27 | * 号码片段 28 | */ 29 | private String mobilePrefix; 30 | /** 31 | * 省份代码 32 | */ 33 | private String provinceCode; 34 | /** 35 | * 市代码 36 | */ 37 | private String cityCode; 38 | /** 39 | * 区号 40 | */ 41 | private String areaCode; 42 | /** 43 | * 省份 44 | */ 45 | private String provinceName; 46 | /** 47 | * 市 48 | */ 49 | private String cityName; 50 | /** 51 | * 运营商名称 52 | */ 53 | private String carrierName; 54 | /** 55 | * 运营商类型:1移动,2 电信,3联通 56 | */ 57 | private Integer carrierType; 58 | } 59 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysLogLoginQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 用户登陆日志 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysLogLoginQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 用户ID 36 | */ 37 | private Long userInfoId; 38 | /** 39 | * 登录名 40 | */ 41 | private String loginName; 42 | /** 43 | * 登录IP 44 | */ 45 | private String loginIp; 46 | /** 47 | * 上次登录IP 48 | */ 49 | private String lastLoginIp; 50 | /** 51 | * 上次登录时间 52 | */ 53 | private Date lastLoginTime; 54 | } 55 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysLogOptQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 用户操作日志表 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysLogOptQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 用户ID 36 | */ 37 | private Long userInfoId; 38 | /** 39 | * 真实姓名 40 | */ 41 | private String loginName; 42 | /** 43 | * 动作 44 | */ 45 | private Integer action; 46 | /** 47 | * 备注 48 | */ 49 | private String remark; 50 | } 51 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysMenuRoleQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 菜单角色关联表 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysMenuRoleQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 菜单ID 52 | */ 53 | private Long menuId; 54 | /** 55 | * 角色ID 56 | */ 57 | private Long roleId; 58 | } 59 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysPlatformQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 授权客户端表 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysPlatformQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台APPID 48 | */ 49 | private String platformAppId; 50 | /** 51 | * 平台APPSECRET 52 | */ 53 | private String platformAppSecret; 54 | /** 55 | * 平台名称 56 | */ 57 | private String platformName; 58 | /** 59 | * 备注 60 | */ 61 | private String remark; 62 | } 63 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysRoleQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 角色信息 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysRoleQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 名称 52 | */ 53 | private String roleName; 54 | /** 55 | * 备注 56 | */ 57 | private String remark; 58 | } 59 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysRoleUserQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 角色用户关联表 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysRoleUserQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 角色ID 52 | */ 53 | private Long roleId; 54 | /** 55 | * 用户ID 56 | */ 57 | private Long userInfoId; 58 | 59 | private String roleName; 60 | } 61 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/AcctInfoVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 账户信息 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class AcctInfoVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | private Long id; 27 | private Date gmtCreate; 28 | private Date gmtModified; 29 | /** 30 | * 1 正常 2 冻结 9注销 31 | */ 32 | private Integer statusId; 33 | /** 34 | * 用户ID 35 | */ 36 | private Long userInfoId; 37 | /** 38 | * 总余额 39 | */ 40 | private Long totalBalance; 41 | /** 42 | * 最后交易余额 43 | */ 44 | private Long lastTradeBalance; 45 | /** 46 | * 最后交易时间 47 | */ 48 | private Date lastTradeDate; 49 | /** 50 | * 校验码 51 | */ 52 | private String verificationCode; 53 | 54 | } 55 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/AreaInfoVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | *

13 | * 14 | *

15 | * 16 | * @author wujing 17 | * @since 2017-12-30 18 | */ 19 | @Data 20 | @Accessors(chain = true) 21 | public class AreaInfoVO implements Serializable { 22 | 23 | private static final long serialVersionUID = 1L; 24 | 25 | private Long id; 26 | /** 27 | * 省编号 28 | */ 29 | private String provinceCode; 30 | /** 31 | * 市编号 32 | */ 33 | private String cityCode; 34 | /** 35 | * 区号 36 | */ 37 | private String areaCode; 38 | /** 39 | * 省名称 40 | */ 41 | private String provinceName; 42 | /** 43 | * 市名称 44 | */ 45 | private String cityName; 46 | /** 47 | * 分类:1.省 2 市 48 | */ 49 | private Integer areaType; 50 | 51 | } 52 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/MobileInfoVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | *

13 | * 14 | *

15 | * 16 | * @author wujing 17 | * @since 2018-01-06 18 | */ 19 | @Data 20 | @Accessors(chain = true) 21 | public class MobileInfoVO implements Serializable { 22 | 23 | private static final long serialVersionUID = 1L; 24 | 25 | private Long id; 26 | /** 27 | * 号码片段 28 | */ 29 | private String mobilePrefix; 30 | /** 31 | * 省份代码 32 | */ 33 | private String provinceCode; 34 | /** 35 | * 市代码 36 | */ 37 | private String cityCode; 38 | /** 39 | * 区号 40 | */ 41 | private String areaCode; 42 | /** 43 | * 省份 44 | */ 45 | private String provinceName; 46 | /** 47 | * 市 48 | */ 49 | private String cityName; 50 | /** 51 | * 运营商名称 52 | */ 53 | private String carrierName; 54 | /** 55 | * 运营商类型:1移动,2 电信,3联通 56 | */ 57 | private Integer carrierType; 58 | 59 | } 60 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysLogLoginVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 用户登陆日志 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysLogLoginVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 用户ID 36 | */ 37 | private Long userInfoId; 38 | /** 39 | * 登录名 40 | */ 41 | private String loginName; 42 | /** 43 | * 登录IP 44 | */ 45 | private String loginIp; 46 | /** 47 | * 上次登录IP 48 | */ 49 | private String lastLoginIp; 50 | /** 51 | * 上次登录时间 52 | */ 53 | private Date lastLoginTime; 54 | 55 | } 56 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysLogOptVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 用户操作日志表 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysLogOptVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 用户ID 36 | */ 37 | private Long userInfoId; 38 | /** 39 | * 真实姓名 40 | */ 41 | private String loginName; 42 | /** 43 | * 动作 44 | */ 45 | private Integer action; 46 | /** 47 | * 备注 48 | */ 49 | private String remark; 50 | 51 | } 52 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysMenuRoleVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 菜单角色关联表 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysMenuRoleVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 菜单ID 52 | */ 53 | private Long menuId; 54 | /** 55 | * 角色ID 56 | */ 57 | private Long roleId; 58 | 59 | } 60 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysPlatformVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 授权客户端表 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysPlatformVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台APPID 48 | */ 49 | private String platformAppId; 50 | /** 51 | * 平台APPSECRET 52 | */ 53 | private String platformAppSecret; 54 | /** 55 | * 平台名称 56 | */ 57 | private String platformName; 58 | /** 59 | * 备注 60 | */ 61 | private String remark; 62 | 63 | } 64 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysRoleUserVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 角色用户关联表 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysRoleUserVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 角色ID 52 | */ 53 | private Long roleId; 54 | /** 55 | * 用户ID 56 | */ 57 | private Long userInfoId; 58 | 59 | } 60 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysRoleVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *

14 | * 角色信息 15 | *

16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysRoleVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 名称 52 | */ 53 | private String roleName; 54 | /** 55 | * 备注 56 | */ 57 | private String remark; 58 | 59 | private Integer isShow; 60 | 61 | } 62 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/common/ShiroComponent.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.common; 5 | 6 | import javax.annotation.PostConstruct; 7 | 8 | import org.springframework.beans.factory.annotation.Autowired; 9 | import org.springframework.stereotype.Component; 10 | import org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer; 11 | 12 | import com.roncoo.shiro.freemarker.ShiroTags; 13 | 14 | /** 15 | * shiro配置类 16 | */ 17 | @Component 18 | public class ShiroComponent { 19 | 20 | @Autowired 21 | private FreeMarkerConfigurer freeMarkerConfigurer; 22 | 23 | @PostConstruct 24 | public void setSharedVariable() { 25 | freeMarkerConfigurer.getConfiguration().setSharedVariable("shiro", new ShiroTags()); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # server 2 | server.port=8888 3 | 4 | # profile 5 | spring.profiles.active=local 6 | 7 | # shiro 8 | spring.shiro.login-url=/login 9 | spring.shiro.success-url=/ 10 | spring.shiro.unauthorized-url=/403 11 | spring.shiro.filter-chain-definition-map.anon=/static/**,/BJUI/**,/favicon.ico,/timeout 12 | spring.shiro.filter-chain-definition-map.authc=/authc 13 | spring.shiro.filter-chain-definition-map.logout=/exit 14 | spring.shiro.filter-chain-definition-map.user=/** 15 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/css/login.css -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/account.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/bg.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/logo.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/password.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/bootstrapSelect/defaults-zh_CN.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/) 3 | * 4 | * Copyright 2013-2014 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | //noneSelectedText: '没有选中任何项', 10 | noneSelectedText: '', 11 | noneResultsText: '没有找到匹配项', 12 | countSelectedText: '选中{1}中的{0}项', 13 | maxOptionsText: ['超出限制 (最多选择{n}项)', '组选择超出限制(最多选择{n}组)'], 14 | multipleSeparator: ', ' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/bootstrapSelect/defaults-zh_CN.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/) 3 | * 4 | * Copyright 2013-2014 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a){a.fn.selectpicker.defaults={noneSelectedText:"",noneResultsText:"没有找到匹配项",countSelectedText:"选中{1}中的{0}项",maxOptionsText:["超出限制 (最多选择{n}项)","组选择超出限制(最多选择{n}组)"],multipleSeparator:", "}}(jQuery); -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/echarts/theme/default.js: -------------------------------------------------------------------------------- 1 | /** 2 | * echarts默认主题,开发中 3 | * 4 | * @desc echarts基于Canvas,纯Javascript图表库,提供直观,生动,可交互,可个性化定制的数据统计图表。 5 | * @author Kener (@Kener-林峰, kener.linfeng@gmail.com) 6 | * 7 | */ 8 | define(function() { 9 | return {}; 10 | }); -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/attached/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/attached/test.txt -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/editor-content.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | /*自定义--编辑框内的内容样式*/ 3 | .ke-content table { 4 | border-collapse: collapse; 5 | border-spacing: 0; 6 | } 7 | .ke-content table th, 8 | .ke-content table td { 9 | border: 1px solid #ddd !important; 10 | } -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/code/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} 2 | 3 | pre.prettyprint { 4 | border: 0; 5 | border-left: 3px solid rgb(204, 204, 204); 6 | margin-left: 2em; 7 | padding: 0.5em; 8 | font-size: 110%; 9 | display: block; 10 | font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; 11 | margin: 1em 0px; 12 | white-space: pre; 13 | } 14 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/pagebreak/pagebreak.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy 6 | * @site http://www.kindsoft.net/ 7 | * @licence http://www.kindsoft.net/license.php 8 | *******************************************************************************/ 9 | 10 | KindEditor.plugin('pagebreak', function(K) { 11 | var self = this; 12 | var name = 'pagebreak'; 13 | var pagebreakHtml = K.undef(self.pagebreakHtml, '
'); 14 | 15 | self.clickToolbar(name, function() { 16 | var cmd = self.cmd, range = cmd.range; 17 | self.focus(); 18 | var tail = self.newlineTag == 'br' || K.WEBKIT ? '' : ''; 19 | self.insertHtml(pagebreakHtml + tail); 20 | if (tail !== '') { 21 | var p = K('#__kindeditor_tail_tag__', self.edit.doc); 22 | range.selectNodeContents(p[0]); 23 | p.removeAttr('id'); 24 | cmd.select(); 25 | } 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 标题 9 |

10 | 11 | 12 | 13 | 16 | 19 | 20 | 21 | 24 | 27 | 28 | 29 | 32 | 35 | 36 | 37 |
14 |

标题1

15 |
17 |

标题1

18 |
22 | 内容1 23 | 25 | 内容2 26 |
30 | 内容3 31 | 33 | 内容4 34 |
38 |

39 | 表格说明 40 |

41 | 42 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入内容 9 |

10 |
    11 |
  1. 12 | 描述1 13 |
  2. 14 |
  3. 15 | 描述2 16 |
  4. 17 |
  5. 18 | 描述3 19 |
  6. 20 |
21 |

22 | 在此处输入内容 23 |

24 |
    25 |
  • 26 | 描述1 27 |
  • 28 |
  • 29 | 描述2 30 |
  • 31 |
  • 32 | 描述3 33 |
  • 34 |
35 | 36 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/anchor.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/blank.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/flash.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/loading.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/media.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/common/rm.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/default/background.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/default/default.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/themes/qq/editor.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/niceValidator/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/niceValidator/images/loading.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/niceValidator/images/validator_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/niceValidator/images/validator_default.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/niceValidator/images/validator_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/niceValidator/images/validator_simple.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/styles/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/add.jpg -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/cancel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/cancel.jpg -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/delete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/delete.jpg -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/upload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/upload.jpg -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/uploadify-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/img/uploadify-cancel.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/scripts/uploadify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/uploadify/scripts/uploadify.swf -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/blue/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/blue/purple.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/blue/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/blue/purple@2x.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/blue/topbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/blue/topbg.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/blue/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/blue/zTreeStandard.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/FA/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/ie7.css: -------------------------------------------------------------------------------- 1 | /*IE 7及以下*/ 2 | #errorie {position: fixed; top: 0; z-index: 100000; height: 30px; background: #FCF8E3;} 3 | #errorie div {width: 900px; margin: 0 auto; line-height: 30px; color: orange; font-size: 14px; text-align: center;} 4 | #errorie div a {color: #459f79;font-size: 14px;} 5 | #errorie div a:hover {text-decoration: underline;} 6 | 7 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/changed-flag-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/changed-flag-icon.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/1_close.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/1_open.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/2.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/3.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/4.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/5.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/6.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/7.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/8.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/diy/9.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/error-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/error-bg.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/line_conn.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/line_conn.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/loading.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/css/img/logo.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/default/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/default/purple.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/default/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/default/purple@2x.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/default/topbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/default/topbg.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/default/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/default/zTreeStandard.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/green/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/green/purple.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/green/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/green/purple@2x.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/green/topbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/green/topbg.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/green/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/green/zTreeStandard.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/orange/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/orange/purple.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/orange/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/orange/purple@2x.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/orange/topbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/orange/topbg.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/orange/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/orange/zTreeStandard.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/purple/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/purple/purple.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/purple/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/purple/purple@2x.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/purple/topbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/purple/topbg.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/themes/purple/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/themes/purple/zTreeStandard.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/favicon.ico -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/admin/sysLogOpt/add.ftl: -------------------------------------------------------------------------------- 1 | <#assign base=request.contextPath /> 2 |
3 |
4 |
5 | 6 | 7 |
8 |
9 | 10 | 11 |
12 |
13 | 14 | 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/admin/sysLogOpt/view.ftl: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | ${bean.gmtCreate!} 5 |
6 |
7 |
8 |
9 | ${bean.userInfoId!} 10 |
11 |
12 |
13 |
14 | ${bean.loginName!} 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/admin/sysPlatform/add.ftl: -------------------------------------------------------------------------------- 1 | <#assign base=request.contextPath /> 2 |
3 |
4 |
5 | 6 | 7 |
8 |
9 | 10 | 11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/admin/sysRole/view.ftl: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | ${bean.roleName!} 5 |
6 |
7 |
8 |
9 |
10 |
11 | ${bean.sort!} 12 |
13 |
14 |
15 |
16 |
17 |
18 | ${bean.remark!} 19 |
20 |
21 |
22 |
23 |
24 |
25 | <#list statusIdEnums as enumvo><#if bean.statusId?? && bean.statusId==enumvo.code>${enumvo.desc} 26 |
27 |
28 |
29 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/admin/sysRoleUser/view.ftl: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | ${bean.gmtCreate!} 5 |
6 |
7 |
8 |
9 | ${bean.gmtModified!} 10 |
11 |
12 |
13 |
14 | ${bean.statusId!} 15 |
16 |
17 |
18 |
19 | ${bean.roleId!} 20 |
21 |
22 |
23 |
24 | ${bean.userInfoId!} 25 |
26 |
27 |
28 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/context.ftl: -------------------------------------------------------------------------------- 1 | <#include "/macro/base.ftl" /> 2 |
3 |
4 |

5 | 龙果充值-运营后台 龙果团队技术支持 6 |

7 |
8 |
9 |
10 |
11 | 12 |

13 | 当前操作系统:${osName!'未知'} 14 |

15 |

16 | 当前JDK版本:${javaVersion!'未知'} 17 |

18 |

19 | 当前Spring Boot版本:1.5.7 20 |

21 |
22 |
23 | 24 |
-------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/macro/menu.ftl: -------------------------------------------------------------------------------- 1 | 2 | <#macro menuListForRole children> 3 | <#if children?? && children?size gt 0> 4 | <#list children as bean> 5 |
  • data-checked="true">${bean.menuName}
  • 6 | <@menuListForRole children=bean.list/> 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/macro/nav.ftl: -------------------------------------------------------------------------------- 1 | <#macro navbar> 2 |
      3 | 4 | <#list menuList as menu> 5 |
    • class="active" > 6 | 7 | ${menu.menuName} 8 | 9 |
      10 |
        11 | <#list menu.list as me> 12 |
      • ${me.menuName}
      • 13 | <#list me.list as m> 14 |
      • ${m.menuName}
      • 15 | 16 | 17 |
      18 |
      19 |
    • 20 | 21 | 22 |
    23 | 24 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/templates/timeout.ftl: -------------------------------------------------------------------------------- 1 | <#assign base=request.contextPath /> 2 | 5 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/test/java/com/roncoo/recharge/BossApplicationTests.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge; 5 | 6 | import org.junit.Test; 7 | import org.junit.runner.RunWith; 8 | import org.springframework.boot.test.context.SpringBootTest; 9 | import org.springframework.test.context.junit4.SpringRunner; 10 | 11 | @RunWith(SpringRunner.class) 12 | @SpringBootTest 13 | public class BossApplicationTests { 14 | 15 | @Test 16 | public void contextLoads() { 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/AcctInfoDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.AcctInfo; 7 | import com.roncoo.recharge.common.entity.AcctInfoExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface AcctInfoDao { 11 | Long save(AcctInfo record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(AcctInfo record); 16 | 17 | AcctInfo getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, AcctInfoExample example); 20 | 21 | AcctInfo getByUserInfoId(Long userInfoId); 22 | 23 | AcctInfo getByIdForUpdate(Long acctInfoId); 24 | } 25 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/AcctLogDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.AcctLog; 7 | import com.roncoo.recharge.common.entity.AcctLogExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface AcctLogDao { 11 | Long save(AcctLog record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(AcctLog record); 16 | 17 | AcctLog getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, AcctLogExample example); 20 | } 21 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/AreaInfoDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.AreaInfo; 9 | import com.roncoo.recharge.common.entity.AreaInfoExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface AreaInfoDao { 13 | int save(AreaInfo record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(AreaInfo record); 18 | 19 | AreaInfo getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, AreaInfoExample example); 22 | 23 | AreaInfo getByProvinceCode(String provinceCode); 24 | 25 | AreaInfo getByProvinceAndCity(String provinceName, String cityName); 26 | 27 | List listByAreaType(int areaType); 28 | } 29 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/ItemDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.Item; 9 | import com.roncoo.recharge.common.entity.ItemExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface ItemDao { 13 | int save(Item record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(Item record); 18 | 19 | Item getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, ItemExample example); 22 | 23 | Item getByItemNo(String itemNo); 24 | 25 | List listByItemCategoryAndItemTypeAndFacePrice(Integer ItemCategory, Integer itemType, String facePrice); 26 | 27 | List listByItemCategoryAndItemTypeAndProvinceCodeAndCarrierTypeAndFacePrice(Integer ItemCategory, Integer itemType, String provinceCode, Integer carrierType, String facePrice); 28 | 29 | } 30 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/ItemSupplyDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.ItemSupply; 9 | import com.roncoo.recharge.common.entity.ItemSupplyExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface ItemSupplyDao { 13 | int save(ItemSupply record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(ItemSupply record); 18 | 19 | ItemSupply getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, ItemSupplyExample example); 22 | 23 | List listByItemId(Long itemId); 24 | } 25 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/MerchantInfoDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.MerchantInfo; 9 | import com.roncoo.recharge.common.entity.MerchantInfoExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface MerchantInfoDao { 13 | int save(MerchantInfo record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(MerchantInfo record); 18 | 19 | MerchantInfo getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, MerchantInfoExample example); 22 | 23 | MerchantInfo getByAppId(String appId); 24 | 25 | List listAll(); 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/MobileInfoDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.MobileInfo; 7 | import com.roncoo.recharge.common.entity.MobileInfoExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface MobileInfoDao { 11 | int save(MobileInfo record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(MobileInfo record); 16 | 17 | MobileInfo getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, MobileInfoExample example); 20 | 21 | MobileInfo getByMobilePrefix(String mobilePrefix); 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/OrderSupplyDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.OrderSupply; 7 | import com.roncoo.recharge.common.entity.OrderSupplyExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface OrderSupplyDao { 11 | Long save(OrderSupply record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(OrderSupply record); 16 | 17 | OrderSupply getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, OrderSupplyExample example); 20 | 21 | OrderSupply getBySupplySerialNo(Long supplySerialNo); 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/OrderTradeDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.OrderTrade; 7 | import com.roncoo.recharge.common.entity.OrderTradeExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface OrderTradeDao { 11 | Long save(OrderTrade record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(OrderTrade record); 16 | 17 | OrderTrade getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, OrderTradeExample example); 20 | 21 | OrderTrade getByOrderNoAndUserInfoId(String orderNo, Long userInfoId); 22 | 23 | OrderTrade getByTradeNo(Long tradeNo); 24 | } 25 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/OrderTradePayDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.OrderTradePay; 7 | import com.roncoo.recharge.common.entity.OrderTradePayExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface OrderTradePayDao { 11 | Long save(OrderTradePay record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(OrderTradePay record); 16 | 17 | OrderTradePay getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, OrderTradePayExample example); 20 | } 21 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SupplyInfoDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.SupplyInfo; 9 | import com.roncoo.recharge.common.entity.SupplyInfoExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface SupplyInfoDao { 13 | int save(SupplyInfo record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(SupplyInfo record); 18 | 19 | SupplyInfo getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, SupplyInfoExample example); 22 | 23 | List listByStatusId(Integer statusId); 24 | 25 | SupplyInfo getBySupplyCode(String supplyCode); 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SysLogLoginDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.SysLogLogin; 7 | import com.roncoo.recharge.common.entity.SysLogLoginExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface SysLogLoginDao { 11 | int save(SysLogLogin record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(SysLogLogin record); 16 | 17 | SysLogLogin getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, SysLogLoginExample example); 20 | } 21 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SysLogOptDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.SysLogOpt; 7 | import com.roncoo.recharge.common.entity.SysLogOptExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface SysLogOptDao { 11 | int save(SysLogOpt record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(SysLogOpt record); 16 | 17 | SysLogOpt getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, SysLogOptExample example); 20 | } 21 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SysMenuDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.SysMenu; 9 | import com.roncoo.recharge.common.entity.SysMenuExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface SysMenuDao { 13 | Long save(SysMenu record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(SysMenu record); 18 | 19 | SysMenu getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, SysMenuExample example); 22 | 23 | List listByPlatformId(Long platformId); 24 | 25 | List listByParentId(Long id); 26 | 27 | List listByParentIdAndPlatformId(Long parentId, Long platformId); 28 | } 29 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SysMenuRoleDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.SysMenuRole; 9 | import com.roncoo.recharge.common.entity.SysMenuRoleExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface SysMenuRoleDao { 13 | int save(SysMenuRole record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(SysMenuRole record); 18 | 19 | SysMenuRole getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, SysMenuRoleExample example); 22 | 23 | List listByRoleId(Long roleId); 24 | 25 | int deleteByRoleId(Long roleId); 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SysPlatformDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.SysPlatform; 9 | import com.roncoo.recharge.common.entity.SysPlatformExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface SysPlatformDao { 13 | int save(SysPlatform record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(SysPlatform record); 18 | 19 | SysPlatform getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, SysPlatformExample example); 22 | 23 | List listAll(); 24 | 25 | SysPlatform getByPlatformAppid(String platformAppid); 26 | } 27 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SysRoleDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.SysRole; 9 | import com.roncoo.recharge.common.entity.SysRoleExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface SysRoleDao { 13 | int save(SysRole record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(SysRole record); 18 | 19 | SysRole getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, SysRoleExample example); 22 | 23 | List listByExample(SysRoleExample example); 24 | } 25 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SysRoleUserDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import java.util.List; 7 | 8 | import com.roncoo.recharge.common.entity.SysRoleUser; 9 | import com.roncoo.recharge.common.entity.SysRoleUserExample; 10 | import com.roncoo.recharge.util.bjui.Page; 11 | 12 | public interface SysRoleUserDao { 13 | int save(SysRoleUser record); 14 | 15 | int deleteById(Long id); 16 | 17 | int updateById(SysRoleUser record); 18 | 19 | SysRoleUser getById(Long id); 20 | 21 | Page listForPage(int pageCurrent, int pageSize, SysRoleUserExample example); 22 | 23 | List listByUserInfoId(Long userInfoId); 24 | 25 | int deleteByUserInfoId(Long userInfoId); 26 | 27 | List listByUserInfoIdAndPlatformId(Long userInfoId, Long platformId); 28 | } 29 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/SysUserInfoDao.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao; 5 | 6 | import com.roncoo.recharge.common.entity.SysUserInfo; 7 | import com.roncoo.recharge.common.entity.SysUserInfoExample; 8 | import com.roncoo.recharge.util.bjui.Page; 9 | 10 | public interface SysUserInfoDao { 11 | Long save(SysUserInfo record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(SysUserInfo record); 16 | 17 | SysUserInfo getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, SysUserInfoExample example); 20 | 21 | SysUserInfo getByLoginName(String username); 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/dao/impl/mapper/ItemMapper.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.dao.impl.mapper; 5 | 6 | import com.roncoo.recharge.common.entity.Item; 7 | import com.roncoo.recharge.common.entity.ItemExample; 8 | import java.util.List; 9 | import org.apache.ibatis.annotations.Mapper; 10 | import org.apache.ibatis.annotations.Param; 11 | 12 | @Mapper 13 | public interface ItemMapper { 14 | int countByExample(ItemExample example); 15 | 16 | int deleteByExample(ItemExample example); 17 | 18 | int deleteByPrimaryKey(Long id); 19 | 20 | int insert(Item record); 21 | 22 | int insertSelective(Item record); 23 | 24 | List selectByExample(ItemExample example); 25 | 26 | Item selectByPrimaryKey(Long id); 27 | 28 | int updateByExampleSelective(@Param("record") Item record, @Param("example") ItemExample example); 29 | 30 | int updateByExample(@Param("record") Item record, @Param("example") ItemExample example); 31 | 32 | int updateByPrimaryKeySelective(Item record); 33 | 34 | int updateByPrimaryKey(Item record); 35 | } 36 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/manager/AcctInfoManager.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.manager; 5 | 6 | import com.roncoo.recharge.common.entity.AcctInfo; 7 | import com.roncoo.recharge.common.entity.OrderTradePay; 8 | 9 | public interface AcctInfoManager { 10 | 11 | /** 12 | * 根据交易支付订单,账户金额变动进行事务操作 13 | */ 14 | AcctInfo commitBalance(OrderTradePay orderTradePay); 15 | } 16 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/java/com/roncoo/recharge/common/manager/NotifyMsgManager.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.common.manager; 5 | 6 | import com.roncoo.recharge.common.entity.OrderTrade; 7 | 8 | public interface NotifyMsgManager { 9 | 10 | /** 11 | * 消息通知 12 | */ 13 | void notifyMsg(OrderTrade orderTrade); 14 | } 15 | -------------------------------------------------------------------------------- /roncoo-recharge-common/src/main/resources/application-local.properties: -------------------------------------------------------------------------------- 1 | # druid 2 | spring.datasource.druid.url=jdbc:mysql://127.0.0.1:3306/rc_recharge?useUnicode=true&characterEncoding=utf-8&useSSL=false 3 | spring.datasource.druid.username=roncoo 4 | spring.datasource.druid.password=123456 5 | #spring.datasource.druid.filters=config 6 | #spring.datasource.druid.connection-properties=config.decrypt=true 7 | 8 | # mybatis 9 | mybatis.mapper-locations=classpath*:mybatis/*.xml 10 | mybatis.type-aliases-package=com.roncoo.recharge.common.entity 11 | 12 | # freemarker 13 | spring.freemarker.request-context-attribute=request 14 | spring.freemarker.prefer-file-system-access=false 15 | spring.freemarker.settings.number_format=0.## 16 | 17 | # aop 18 | spring.aop.auto=true 19 | 20 | # logging 21 | logging.level.com.roncoo=debug 22 | -------------------------------------------------------------------------------- /roncoo-recharge-crontab/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.roncoo.recharge 6 | roncoo-recharge 7 | 1.0.0 8 | 9 | roncoo-recharge-crontab 10 | jar 11 | 12 | roncoo-recharge-crontab 13 | 龙果充值-定时任务 14 | 15 | 16 | 17 | com.roncoo.recharge 18 | roncoo-recharge-common 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /roncoo-recharge-crontab/src/main/java/com/roncoo/recharge/CrontabApplication.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge; 5 | 6 | import org.springframework.boot.SpringApplication; 7 | import org.springframework.boot.autoconfigure.SpringBootApplication; 8 | import org.springframework.scheduling.annotation.EnableScheduling; 9 | 10 | @EnableScheduling 11 | @SpringBootApplication 12 | public class CrontabApplication { 13 | 14 | public static void main(String[] args) { 15 | SpringApplication.run(CrontabApplication.class, args); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /roncoo-recharge-crontab/src/main/java/com/roncoo/recharge/crontab/task/OrderTask.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.crontab.task; 5 | 6 | import org.springframework.scheduling.annotation.Scheduled; 7 | import org.springframework.stereotype.Component; 8 | 9 | import com.roncoo.recharge.util.base.BaseController; 10 | 11 | /** 12 | * 定时任务 13 | * 14 | * @author wujing 15 | */ 16 | @Component 17 | public class OrderTask extends BaseController { 18 | 19 | private static final Object KEY = new Object(); 20 | 21 | private static boolean TASKFLAG = false; 22 | 23 | // 每分钟执行一次 24 | @Scheduled(fixedRate = 60000) 25 | public void orderCancel() { 26 | synchronized (KEY) { 27 | if (TASKFLAG) { 28 | logger.warn("任务已经启动,需要退出。避免在同一时间,有两个任务在同时运行,重复处理数据!"); 29 | return; 30 | } 31 | TASKFLAG = true; 32 | } 33 | logger.warn("定时任务开始"); 34 | 35 | try { 36 | 37 | } catch (Exception e) { 38 | logger.error("定时任务-取消订单-执行出错", e); 39 | } finally { 40 | TASKFLAG = false; 41 | } 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /roncoo-recharge-gateway/src/main/java/com/roncoo/recharge/GatewayApplication.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge; 5 | 6 | import org.springframework.boot.SpringApplication; 7 | import org.springframework.boot.autoconfigure.SpringBootApplication; 8 | 9 | @SpringBootApplication 10 | public class GatewayApplication { 11 | 12 | public static void main(String[] args) { 13 | SpringApplication.run(GatewayApplication.class, args); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /roncoo-recharge-gateway/src/main/java/com/roncoo/recharge/gateway/boss/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.gateway.boss; 5 | -------------------------------------------------------------------------------- /roncoo-recharge-gateway/src/main/java/com/roncoo/recharge/gateway/controller/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.gateway.controller; 5 | -------------------------------------------------------------------------------- /roncoo-recharge-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # server 2 | server.port=8080 3 | 4 | # profile 5 | spring.profiles.active=local 6 | -------------------------------------------------------------------------------- /roncoo-recharge-gateway/src/test/java/com/roncoo/recharge/gateway/test/GatewayApplicationTests.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.gateway.test; 5 | 6 | import org.junit.Test; 7 | import org.junit.runner.RunWith; 8 | import org.springframework.boot.test.context.SpringBootTest; 9 | import org.springframework.test.context.junit4.SpringRunner; 10 | 11 | @RunWith(SpringRunner.class) 12 | @SpringBootTest 13 | public class GatewayApplicationTests { 14 | 15 | @Test 16 | public void contextLoads() { 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/Constants.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util; 5 | 6 | /** 7 | * 常量工具类 8 | * 9 | * @author wujing 10 | */ 11 | public final class Constants { 12 | 13 | private Constants() { 14 | } 15 | 16 | /** 17 | * 常量 18 | * 19 | * @author wujing 20 | */ 21 | public interface BeanSuffix { 22 | public final static String CARD = "_card"; 23 | public final static String TELEPHONE = "_telephone"; 24 | public final static String FLOW = "_flow"; 25 | } 26 | 27 | /** 28 | * 常量 29 | * 30 | * @author wujing 31 | */ 32 | public interface Session { 33 | public final static String USER_TYPE = "roncoo_user_type"; 34 | public final static String USER_ID = "roncoo_user_info_id"; 35 | public final static String USER = "roncoo_user"; 36 | public final static String MENU = "roncoo_menu"; 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/NOUtil.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util; 5 | 6 | import java.util.Date; 7 | import java.util.Random; 8 | 9 | import com.xiaoleilu.hutool.date.DateUtil; 10 | 11 | public final class NOUtil { 12 | 13 | private NOUtil() { 14 | } 15 | 16 | public static Long getTradeNo() { 17 | return Long.valueOf(DateUtil.format(new Date(), "yyyyMMddHHmmss") + getRandom(5)); 18 | } 19 | 20 | private static String getRandom(int bound) { 21 | Random ra = new Random(); 22 | String result = ""; 23 | for (int i = 1; i <= bound; i++) { 24 | result += ra.nextInt(10); 25 | } 26 | return result; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/PingyinUtil.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util; 5 | 6 | import net.sourceforge.pinyin4j.PinyinHelper; 7 | import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; 8 | import net.sourceforge.pinyin4j.format.HanyuPinyinToneType; 9 | import net.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination; 10 | 11 | public final class PingyinUtil { 12 | 13 | private PingyinUtil() { 14 | } 15 | 16 | public static String toPingyin(String zhongwen) { 17 | HanyuPinyinOutputFormat hanYuPinOutputFormat = new HanyuPinyinOutputFormat(); 18 | hanYuPinOutputFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE); 19 | try { 20 | return PinyinHelper.toHanYuPinyinString(zhongwen, hanYuPinOutputFormat, "", true); 21 | } catch (BadHanyuPinyinOutputFormatCombination e) { 22 | e.printStackTrace(); 23 | return ""; 24 | } 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/VCUtil.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util; 5 | 6 | import com.xiaoleilu.hutool.crypto.DigestUtil; 7 | 8 | /** 9 | * @author wujing 10 | */ 11 | public final class VCUtil { 12 | 13 | private final static String KEY = "RONCOO"; 14 | private final static String SPLIT = "_"; 15 | 16 | private VCUtil() { 17 | 18 | } 19 | 20 | public static Boolean checkVC(String vc, Long totalBalance, Long lastTradeBalance) { 21 | if (vc.equals(getVC(totalBalance, lastTradeBalance))) { 22 | return true; 23 | } 24 | return false; 25 | } 26 | 27 | public static String getVC(Long totalBalance, Long lastTradeBalance) { 28 | String sourceString = KEY + (totalBalance == null ? 0 : totalBalance) + SPLIT + (lastTradeBalance == null ? 0 : lastTradeBalance) + SPLIT; 29 | return DigestUtil.md5Hex(sourceString); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/base/BaseRoncoo.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.base; 5 | 6 | import java.util.concurrent.ExecutorService; 7 | import java.util.concurrent.Executors; 8 | 9 | import org.apache.commons.lang3.builder.ReflectionToStringBuilder; 10 | import org.apache.commons.lang3.builder.ToStringStyle; 11 | import org.slf4j.Logger; 12 | import org.slf4j.LoggerFactory; 13 | 14 | /** 15 | * 基础类 16 | * 17 | * @author wujing 18 | */ 19 | public class BaseRoncoo { 20 | 21 | protected static final ExecutorService exchangeExecutor = Executors.newFixedThreadPool(50); 22 | protected static final ExecutorService rechargeExecutor = Executors.newFixedThreadPool(50); 23 | protected static final ExecutorService notifyExecutor = Executors.newFixedThreadPool(50); 24 | 25 | protected final Logger logger = LoggerFactory.getLogger(this.getClass()); 26 | 27 | protected void logToString(Object obj) { 28 | logger.info(ReflectionToStringBuilder.toString(obj, ToStringStyle.MULTI_LINE_STYLE)); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/ApiVerifyTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum ApiVerifyTypeEnum { 10 | 11 | SECRET(1, "秘钥"), SECRET_WHITE(2, "秘钥+白名单"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private ApiVerifyTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/BillStatusEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum BillStatusEnum { 10 | 11 | SUCCESS(1, "成功"), EX(2, "异常"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private BillStatusEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | // 获取desc 23 | public static String getDesc(Integer code) { 24 | for (BillStatusEnum em : BillStatusEnum.values()) { 25 | if (em.getCode().equals(code)) { 26 | return em.getDesc(); 27 | } 28 | } 29 | return ""; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/BillTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum BillTypeEnum { 10 | 11 | PAY(1, "支付单"), RECHAREGE(2, "充值单"), REFUND(3, "退款单"), TX(4, "提现单"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private BillTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | // 获取desc 23 | public static String getDesc(Integer code) { 24 | for (BillTypeEnum em : BillTypeEnum.values()) { 25 | if (em.getCode().equals(code)) { 26 | return em.getDesc(); 27 | } 28 | } 29 | return ""; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/CarrierTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum CarrierTypeEnum { 10 | 11 | MOBILE(1, "移动"), TELECOM(2, "电信"), UNICOM(3, "联通"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private CarrierTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | // 获取desc 23 | public static String getDesc(Integer code) { 24 | for (CarrierTypeEnum em : CarrierTypeEnum.values()) { 25 | if (em.getCode().equals(code)) { 26 | return em.getDesc(); 27 | } 28 | } 29 | return ""; 30 | } 31 | 32 | // 获取code 33 | public static Integer getCode(String desc) { 34 | for (CarrierTypeEnum em : CarrierTypeEnum.values()) { 35 | if (em.getDesc().equals(desc)) { 36 | return em.getCode(); 37 | } 38 | } 39 | return 0; 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/ChannelEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum ChannelEnum { 10 | 11 | API(1, "API"), WEB(2, "WEB"), APP(3, "APP"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private ChannelEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | // 获取desc 23 | public static String getDesc(Integer code) { 24 | for (ChannelEnum em : ChannelEnum.values()) { 25 | if (em.getCode().equals(code)) { 26 | return em.getDesc(); 27 | } 28 | } 29 | return ""; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/FlowModeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum FlowModeEnum { 10 | 11 | CURRENT(1, "立即生效"), NEXT(2, "下月生效"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private FlowModeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/FlowPackageTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | /** 9 | * 10 | * 包体类型 11 | * 12 | */ 13 | @Getter 14 | public enum FlowPackageTypeEnum { 15 | 16 | MONTH(1, "月包"), // 17 | 18 | SEASON(2, "季度包"), // 19 | 20 | HALF(3, "半年包"), // 21 | 22 | YEAR(4, "年包"), // 23 | 24 | ONE_DAY(5, "1日包"), // 25 | 26 | THREE_DAY(6, "3日包"), // 27 | 28 | SEVEN_DAY(7, "7日包"), // 29 | 30 | RED(8, "红包"), // 31 | 32 | SHARE(9, "共享"); 33 | 34 | private Integer code; 35 | 36 | private String desc; 37 | 38 | private FlowPackageTypeEnum(Integer code, String desc) { 39 | this.code = code; 40 | this.desc = desc; 41 | } 42 | 43 | // 获取desc 44 | public static String getDesc(Integer code) { 45 | for (FlowPackageTypeEnum em : FlowPackageTypeEnum.values()) { 46 | if (em.getCode().equals(code)) { 47 | return em.getDesc(); 48 | } 49 | } 50 | return ""; 51 | } 52 | 53 | } 54 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/FlowScopeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | /** 9 | * 10 | * 流量使用范围 11 | * 12 | * 全国漫游-全国通道,全国流量.注:有人把全国漫游流量称为统付
    13 | * 省网漫游-省通道(只能该省号码充值的通道),全国流量.
    14 | * 省网非漫游-省通道(只能该省号码充值的通道),省内流量.
    15 | * 全国非漫游-不存在这种流量,全国通道充值的流量全部都是全国的.至少现在没有发现有这种流量
    16 | * 17 | * 备注:有人把省内称为本地;实际上还有种本地流量(指的在该城市范围内使用的流量) 18 | */ 19 | @Getter 20 | public enum FlowScopeEnum { 21 | // 漫游 //非漫游 22 | WHOLE(1, "全国"), LOCAL(2, "本地"); 23 | 24 | private Integer code; 25 | 26 | private String desc; 27 | 28 | private FlowScopeEnum(Integer code, String desc) { 29 | this.code = code; 30 | this.desc = desc; 31 | } 32 | 33 | // 获取desc 34 | public static String getDesc(Integer code) { 35 | for (FlowScopeEnum em : FlowScopeEnum.values()) { 36 | if (em.getCode().equals(code)) { 37 | return em.getDesc(); 38 | } 39 | } 40 | return ""; 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/FlowStreamTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | /** 9 | * 通道类型 10 | */ 11 | @Getter 12 | public enum FlowStreamTypeEnum { 13 | 14 | WHOLE(1, "全国"), PROVINCE(2, "分省"); 15 | 16 | private Integer code; 17 | 18 | private String desc; 19 | 20 | private FlowStreamTypeEnum(Integer code, String desc) { 21 | this.code = code; 22 | this.desc = desc; 23 | } 24 | 25 | // 获取desc 26 | public static String getDesc(Integer code) { 27 | for (FlowStreamTypeEnum em : FlowStreamTypeEnum.values()) { 28 | if (em.getCode().equals(code)) { 29 | return em.getDesc(); 30 | } 31 | } 32 | return ""; 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/ItemCategoryEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum ItemCategoryEnum { 10 | 11 | RECHARGE(1, "充值"), EXCHANGE(2, "兑换"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private ItemCategoryEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | // 获取desc 23 | public static String getDesc(Integer code) { 24 | for (ItemCategoryEnum em : ItemCategoryEnum.values()) { 25 | if (em.getCode().equals(code)) { 26 | return em.getDesc(); 27 | } 28 | } 29 | return ""; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/ItemStatusEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum ItemStatusEnum { 10 | 11 | INIT(1, "初始化"), UP(2, "上架"), DOWN(3, "下架"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private ItemStatusEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/ItemTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum ItemTypeEnum { 10 | 11 | FLOW(1, "流量"), TELEPHONE(2, "话费"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private ItemTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | // 获取desc 23 | public static String getDesc(Integer code) { 24 | for (ItemTypeEnum em : ItemTypeEnum.values()) { 25 | if (em.getCode().equals(code)) { 26 | return em.getDesc(); 27 | } 28 | } 29 | return ""; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/LossTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum LossTypeEnum { 10 | 11 | SECRET(1, "可以折损"), SECRET_WHITE(2, "不允许折损"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private LossTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/OrderStatusEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum OrderStatusEnum { 10 | 11 | CREATE(0, "创建"), WARTING(1, "处理中"), SUCCESS(2, "成功"), FAIL(3, "失败"), UNAFFIRM(9, "未确认"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private OrderStatusEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/PayStatusEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum PayStatusEnum { 10 | 11 | CREATE(0, "创建"), SUCCESS(2, "支付成功"), FAIL(3, "支付失败"), UNAFFIRM(9, "异常"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private PayStatusEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/PayTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum PayTypeEnum { 10 | 11 | BALANCE(1, "余额"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private PayTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/PriceLevelEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum PriceLevelEnum { 10 | 11 | ONE(1, "销售价1"), TWO(2, "销售价2"), THREE(3, "销售价3"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private PriceLevelEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | // 获取desc 23 | public static String getDesc(Integer code) { 24 | for (PriceLevelEnum em : PriceLevelEnum.values()) { 25 | if (em.getCode().equals(code)) { 26 | return em.getDesc(); 27 | } 28 | } 29 | return ""; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/RepeatTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum RepeatTypeEnum { 10 | 11 | YES(1, "补充"), NO(2, "未补充"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private RepeatTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/ResultEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum ResultEnum { 10 | 11 | ERROR(999, "正常"), SUCCESS(200, "冻结"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private ResultEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/StatusIdEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum StatusIdEnum { 10 | 11 | NORMAL(1, "正常"), FREEZE(2, "冻结"), CANCEL(3, "注销"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private StatusIdEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/SupplyCategoryEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum SupplyCategoryEnum { 10 | 11 | RECHARGE(1, "充值供货商"), EXCHANGE(2, "兑换供货商"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private SupplyCategoryEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | // 获取desc 23 | public static String getDesc(Integer code) { 24 | for (SupplyCategoryEnum em : SupplyCategoryEnum.values()) { 25 | if (em.getCode().equals(code)) { 26 | return em.getDesc(); 27 | } 28 | } 29 | return ""; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/TradeStatusEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum TradeStatusEnum { 10 | 11 | SUCCESS(1, "成功"), FAIL(2, "失败"), UNCONFIRM(3, "未确认"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private TradeStatusEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/TradeTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum TradeTypeEnum { 10 | 11 | ADD(1, "入账"), SUBTRACT(2, "出账"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private TradeTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/TxVerifyTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum TxVerifyTypeEnum { 10 | 11 | SECRET(1, "支付密码"), SECRET_VBR(2, "支付密码+动态码"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private TxVerifyTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/enums/UserTypeEnum.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.enums; 5 | 6 | import lombok.Getter; 7 | 8 | @Getter 9 | public enum UserTypeEnum { 10 | 11 | USER(1, "内部用户"), MERCHANTS(2, "下游商户"); 12 | 13 | private Integer code; 14 | 15 | private String desc; 16 | 17 | private UserTypeEnum(Integer code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/java/com/roncoo/recharge/util/exception/BaseException.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.util.exception; 5 | 6 | import lombok.Getter; 7 | import lombok.Setter; 8 | 9 | /** 10 | * 业务异常基类 11 | */ 12 | @Setter 13 | @Getter 14 | public class BaseException extends RuntimeException { 15 | 16 | private static final long serialVersionUID = 1L; 17 | 18 | private String message; 19 | 20 | public BaseException() { 21 | super(); 22 | } 23 | 24 | public BaseException(String message) { 25 | super(message); 26 | this.message = message; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ __ ___ _ __ ___ ___ ___ 2 | | '__/ _ \| '_ \ / __/ _ \ / _ \ 3 | | | | (_) | | | | (_| (_) | (_) | 4 | |_| \___/|_| |_|\___\___/ \___/ 5 | 6 | 龙果技术团队开发: http://www.roncoo.com 7 | Spring Boot Version: ${spring-boot.version}${spring-boot.formatted-version} 8 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/resources/config.properties: -------------------------------------------------------------------------------- 1 | # 本地环境 2 | env=local 3 | 4 | # 平台platformAppId 5 | platform.appId=RC9560472864454143847a270bd4436532 6 | 7 | # 网关访问地址 8 | gateway.url=http://localhost:8080/ 9 | 10 | # 核单接口 11 | check.order.exchange.url=http://127.0.0.1:8080/boss/query/exchange/order/{supplySerialNo} 12 | check.order.recharge.url=http://127.0.0.1:8080/boss/query/recharge/order/{supplySerialNo} 13 | 14 | # 补通知接口 15 | repair.notify.exchange.url=http://127.0.0.1:8080/boss/repair/exchange/notify/{tradeNo} 16 | repair.notify.recharge.url=http://127.0.0.1:8080/boss/repair/recharge/notify/{tradeNo} 17 | 18 | # 补单接口 19 | repair.order.exchange.url=http://127.0.0.1:8080/boss/repair/exchange/{tradeNo} 20 | repair.order.recharge.url=http://127.0.0.1:8080/boss/repair/recharge/{tradeNo} 21 | 22 | # 上游余额查询接口 23 | balance.query.url=http://127.0.0.1:8080/boss/query/balance/{supplyCode} 24 | -------------------------------------------------------------------------------- /roncoo-recharge-util/src/main/resources/config/test/config.properties: -------------------------------------------------------------------------------- 1 | # 测试环境 2 | env=test 3 | 4 | # 平台platformAppId 5 | platform.appId=RC9560472864454143847a270bd4436532 6 | 7 | # 网关访问地址 8 | gateway.url=http://localhost:8080/ 9 | 10 | # 核单接口 11 | check.order.exchange.url=http://127.0.0.1:8080/boss/query/exchange/order/{supplySerialNo} 12 | check.order.recharge.url=http://127.0.0.1:8080/boss/query/recharge/order/{supplySerialNo} 13 | 14 | # 补通知接口 15 | repair.notify.exchange.url=http://127.0.0.1:8080/boss/repair/exchange/notify/{tradeNo} 16 | repair.notify.recharge.url=http://127.0.0.1:8080/boss/repair/recharge/notify/{tradeNo} 17 | 18 | # 补单接口 19 | repair.order.exchange.url=http://127.0.0.1:8080/boss/repair/exchange/{tradeNo} 20 | repair.order.recharge.url=http://127.0.0.1:8080/boss/repair/recharge/{tradeNo} 21 | 22 | # 上游余额查询接口 23 | balance.query.url=http://127.0.0.1:8080/boss/query/balance/{supplyCode} 24 | --------------------------------------------------------------------------------