├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── 20181016154817.jpg ├── 20181019154819.png ├── ABtest.md ├── README.md ├── _config.yml ├── common ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── king │ │ ├── common │ │ ├── annotation │ │ │ ├── DataFilter.java │ │ │ ├── DuplicateFilter.java │ │ │ ├── DynamicColFilter.java │ │ │ ├── Log.java │ │ │ └── PropertyExt.java │ │ ├── aspect │ │ │ ├── DataSourceAspect.java │ │ │ └── ExceptionAspect.java │ │ ├── dataSource │ │ │ ├── ChooseDataSource.java │ │ │ ├── DataSourceType.java │ │ │ └── HandleDataSource.java │ │ ├── mongodb │ │ │ ├── model │ │ │ │ ├── ExceptionLogVO.java │ │ │ │ └── SysLogVO.java │ │ │ ├── mongo │ │ │ │ ├── BaseMongoRepository.java │ │ │ │ ├── BaseMongoRepositoryImpl.java │ │ │ │ └── Page.java │ │ │ └── repo │ │ │ │ ├── ExceptionLogRepo.java │ │ │ │ ├── ExceptionLogRepoImpl.java │ │ │ │ ├── SysLogRepo.java │ │ │ │ └── SysLogRepoImpl.java │ │ ├── mq │ │ │ └── config │ │ │ │ ├── MQConsumerConfig.java │ │ │ │ └── MQProducerConfig.java │ │ └── utils │ │ │ ├── JsonResponse.java │ │ │ ├── Page.java │ │ │ ├── constant │ │ │ └── Constant.java │ │ │ ├── date │ │ │ ├── DateConvertUtils.java │ │ │ ├── DatePattern.java │ │ │ ├── DateToolkit.java │ │ │ ├── DateUtils.java │ │ │ └── JodaTimeUtils.java │ │ │ ├── entityMapper │ │ │ ├── EntityMapperRedis.java │ │ │ ├── EntityMapperResolver.java │ │ │ ├── GenEntityMapper.java │ │ │ └── GenEntityMapperMap.java │ │ │ ├── exception │ │ │ ├── ExceptionUtils.java │ │ │ ├── RRException.java │ │ │ └── ServiceException.java │ │ │ ├── file │ │ │ ├── DataUtil.java │ │ │ ├── FileToolkit.java │ │ │ ├── IoUtil.java │ │ │ ├── ResourceUtils.java │ │ │ ├── ZipUtils.java │ │ │ └── xml │ │ │ │ ├── annotation │ │ │ │ ├── Column.java │ │ │ │ └── Root.java │ │ │ │ ├── base │ │ │ │ ├── Range.java │ │ │ │ └── XmlBase.java │ │ │ │ ├── handler │ │ │ │ └── XmlHandler.java │ │ │ │ └── util │ │ │ │ ├── Strkit.java │ │ │ │ └── Xml4bigKit.java │ │ │ ├── ftp │ │ │ ├── FtpAccess.java │ │ │ ├── FtpDownload.java │ │ │ ├── FtpInfo.java │ │ │ └── Sequence.java │ │ │ ├── i18n │ │ │ ├── I18nMessage.java │ │ │ ├── Message.java │ │ │ ├── PropertiesUtil.java │ │ │ └── PropertyFileUtils.java │ │ │ ├── network │ │ │ ├── AddressUtils.java │ │ │ ├── HttpUtils.java │ │ │ ├── NetUtils.java │ │ │ └── ResponseWrap.java │ │ │ ├── pattern │ │ │ ├── DataType.java │ │ │ ├── HTMLFilter.java │ │ │ ├── ParserUtil.java │ │ │ ├── PatternToolkit.java │ │ │ ├── ReflectUtil.java │ │ │ ├── SQLFilter.java │ │ │ ├── SerializeUtil.java │ │ │ ├── StringToolkit.java │ │ │ └── TypeParseUtil.java │ │ │ ├── redis │ │ │ ├── IdGenerator.java │ │ │ ├── RedisKeys.java │ │ │ ├── RedisUtils.java │ │ │ ├── SysConfigRedis.java │ │ │ └── TokenGenerator.java │ │ │ ├── security │ │ │ ├── BasePasswordEncoder.java │ │ │ ├── Encrypt.java │ │ │ ├── SecurityUtil.java │ │ │ ├── coder │ │ │ │ ├── BASE64Decoder.java │ │ │ │ ├── BASE64Encoder.java │ │ │ │ ├── Base64.java │ │ │ │ ├── BaseDigestPasswordEncoder.java │ │ │ │ ├── BouncyCastleProvider.java │ │ │ │ ├── CharacterDecoder.java │ │ │ │ ├── DESCoder.java │ │ │ │ ├── Hash.java │ │ │ │ ├── Hex.java │ │ │ │ ├── HmacCoder.java │ │ │ │ ├── MDCoder.java │ │ │ │ ├── PasswordEncoder.java │ │ │ │ ├── RSACoder.java │ │ │ │ ├── SHACoder.java │ │ │ │ ├── SecurityCoder.java │ │ │ │ └── Utf8.java │ │ │ └── crypto │ │ │ │ ├── AbstractHash.java │ │ │ │ ├── Base64.java │ │ │ │ ├── ByteSource.java │ │ │ │ ├── CodecException.java │ │ │ │ ├── CodecSupport.java │ │ │ │ ├── CryptoException.java │ │ │ │ ├── H64.java │ │ │ │ ├── Hash.java │ │ │ │ ├── Hex.java │ │ │ │ ├── Sha256Hash.java │ │ │ │ ├── ShiroException.java │ │ │ │ ├── SimpleByteSource.java │ │ │ │ ├── SimpleHash.java │ │ │ │ ├── StringUtils.java │ │ │ │ └── UnknownAlgorithmException.java │ │ │ ├── spring │ │ │ ├── BeanUtils.java │ │ │ ├── PropertyPlaceholderConfigurerExt.java │ │ │ └── SpringContextUtils.java │ │ │ ├── thread │ │ │ ├── ScheduleRunnable.java │ │ │ ├── SensibleClone.java │ │ │ └── SerialNoHolder.java │ │ │ └── validator │ │ │ ├── Assert.java │ │ │ ├── IDCardUtil.java │ │ │ ├── LimitMap.java │ │ │ ├── MathUtil.java │ │ │ ├── RMBUtil.java │ │ │ ├── ValidatorUtils.java │ │ │ └── group │ │ │ ├── AddGroup.java │ │ │ ├── AliyunGroup.java │ │ │ ├── Group.java │ │ │ ├── QcloudGroup.java │ │ │ ├── QiniuGroup.java │ │ │ └── UpdateGroup.java │ │ └── dal │ │ └── gen │ │ ├── dao │ │ └── BaseDao.java │ │ ├── model │ │ ├── Response.java │ │ ├── oss │ │ │ ├── CloudStorageConfig.java │ │ │ ├── OssDoc2pdf.java │ │ │ ├── OssFile.java │ │ │ └── OssWaterSetting.java │ │ └── smp │ │ │ ├── ScheduleJob.java │ │ │ ├── ScheduleJobLog.java │ │ │ ├── SysConfig.java │ │ │ ├── SysDept.java │ │ │ ├── SysDic.java │ │ │ ├── SysDicTerm.java │ │ │ ├── SysLog.java │ │ │ ├── SysMenu.java │ │ │ ├── SysRole.java │ │ │ ├── SysRoleDept.java │ │ │ ├── SysRoleMenu.java │ │ │ ├── SysUser.java │ │ │ ├── SysUserRole.java │ │ │ └── SysUserToken.java │ │ └── service │ │ ├── BaseService.java │ │ └── BaseServiceImpl.java │ └── test │ └── java │ ├── encryptUtils │ ├── Base64.java │ └── Encrypt.java │ └── tool │ ├── Burger.java │ ├── Encrypt.java │ ├── Item.java │ ├── PropertyPlaceholderConfigurerExt.java │ ├── Prototype.java │ ├── Service.java │ ├── mq │ ├── HashUtil.java │ ├── LocalTransactionCheckerImpl.java │ ├── TransactionListenerImpl.java │ ├── TransactionProducer.java │ └── TransactionProducerClient.java │ └── ss.java ├── interface-service ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── king │ │ └── api │ │ ├── oss │ │ ├── OssDoc2pdfService.java │ │ └── OssFileService.java │ │ └── smp │ │ ├── ScheduleJobService.java │ │ ├── ShiroService.java │ │ ├── SysConfigService.java │ │ ├── SysDeptService.java │ │ ├── SysDicService.java │ │ ├── SysLogService.java │ │ ├── SysMenuService.java │ │ ├── SysRoleService.java │ │ └── SysUserService.java │ └── test │ └── java │ └── in │ └── sss │ └── AppTest.java ├── oss ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── king │ │ │ ├── OssServer.java │ │ │ ├── dao │ │ │ ├── OssDoc2pdfDao.java │ │ │ ├── OssFileDao.java │ │ │ └── OssWaterSettingDao.java │ │ │ ├── listener │ │ │ └── ApplicationInitializedListener.java │ │ │ ├── services │ │ │ └── spi │ │ │ │ ├── OssDoc2pdfServiceImpl.java │ │ │ │ └── OssFileServiceImpl.java │ │ │ └── utils │ │ │ ├── Query.java │ │ │ ├── fastdfs │ │ │ ├── ClientGlobal.java │ │ │ ├── DownloadCallback.java │ │ │ ├── DownloadStream.java │ │ │ ├── FileInfo.java │ │ │ ├── IniFileReader.java │ │ │ ├── MyException.java │ │ │ ├── NameValuePair.java │ │ │ ├── ProtoCommon.java │ │ │ ├── ProtoStructDecoder.java │ │ │ ├── ServerInfo.java │ │ │ ├── StorageClient.java │ │ │ ├── StorageClient1.java │ │ │ ├── StorageServer.java │ │ │ ├── StructBase.java │ │ │ ├── StructGroupStat.java │ │ │ ├── StructStorageStat.java │ │ │ ├── TrackerClient.java │ │ │ ├── TrackerGroup.java │ │ │ ├── TrackerServer.java │ │ │ ├── UploadCallback.java │ │ │ ├── UploadStream.java │ │ │ └── test │ │ │ │ ├── DownloadFileWriter.java │ │ │ │ ├── Monitor.java │ │ │ │ ├── Test.java │ │ │ │ ├── Test1.java │ │ │ │ ├── TestAppender.java │ │ │ │ ├── TestAppender1.java │ │ │ │ ├── TestClient.java │ │ │ │ ├── TestClient1.java │ │ │ │ ├── TestLoad.java │ │ │ │ └── UploadLocalFileSender.java │ │ │ └── fastdht │ │ │ ├── ClientGlobal.java │ │ │ ├── FastDHTClient.java │ │ │ ├── KeyInfo.java │ │ │ ├── ObjectInfo.java │ │ │ ├── ProtoCommon.java │ │ │ ├── ServerGroup.java │ │ │ ├── ServerInfo.java │ │ │ ├── Test.java │ │ │ └── TestBatch.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ ├── spring-data.xml │ │ │ ├── spring-dubbo.xml │ │ │ ├── spring-mongodb.xml │ │ │ └── spring-redis.xml │ │ ├── log4j.xml │ │ ├── mapper │ │ ├── OssDoc2pdfDao.xml │ │ ├── OssFileDao.xml │ │ └── OssWaterSettingDao.xml │ │ └── settings.properties │ └── test │ └── java │ └── com │ └── king │ └── oss │ └── AppTest.java ├── portal-html ├── pom.xml └── src │ └── main │ └── webapp │ ├── 404.html │ ├── WEB-INF │ └── web.xml │ ├── header.html │ ├── index.html │ ├── login.html │ ├── main.html │ ├── modules │ ├── gen │ │ └── generator.html │ ├── job │ │ ├── schedule.html │ │ └── schedule_log.html │ ├── oss │ │ ├── config.html │ │ ├── file.html │ │ └── pdf.html │ └── sys │ │ ├── config.html │ │ ├── dept.html │ │ ├── dic.html │ │ ├── exception.html │ │ ├── help.html │ │ ├── log.html │ │ ├── menu.html │ │ ├── online.html │ │ ├── role.html │ │ └── user.html │ ├── static │ ├── css │ │ ├── AdminLTE.min.css │ │ ├── all-skins.min.css │ │ ├── bootstrap-table.min.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── index1.css │ │ └── main.css │ ├── favicon.ico │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── common.js │ │ ├── index.js │ │ ├── modules │ │ │ ├── gen │ │ │ │ └── generator.js │ │ │ ├── job │ │ │ │ ├── schedule.js │ │ │ │ └── schedule_log.js │ │ │ ├── oss │ │ │ │ ├── config.js │ │ │ │ ├── file.js │ │ │ │ └── pdf.js │ │ │ └── sys │ │ │ │ ├── config.js │ │ │ │ ├── dept.js │ │ │ │ ├── dic.js │ │ │ │ ├── exception.js │ │ │ │ ├── help.js │ │ │ │ ├── log.js │ │ │ │ ├── menu.js │ │ │ │ ├── online.js │ │ │ │ ├── role.js │ │ │ │ └── user.js │ │ ├── navbar.js │ │ ├── navtab.js │ │ ├── navtab2.js │ │ └── tab.js │ ├── libs │ │ ├── FileSaver.js │ │ ├── FileSaver.min.js │ │ ├── ajaxupload.js │ │ ├── app.js │ │ ├── bootstrap-table.min.js │ │ ├── bootstrap.min.js │ │ ├── fastclick.min.js │ │ ├── jquery.min.js │ │ ├── jquery.slimscroll.min.js │ │ ├── jquery.wordexport.js │ │ ├── require.js │ │ ├── router.js │ │ ├── store.js │ │ ├── validator.js │ │ ├── validator.min.js │ │ └── vue.min.js │ └── plugins │ │ ├── element-ui-2.3.9 │ │ └── lib │ │ │ ├── index.js │ │ │ └── theme-chalk │ │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ │ └── index.css │ │ ├── jqgrid │ │ ├── grid.locale-cn.js │ │ ├── jquery.jqGrid.min.js │ │ ├── ui.jqgrid-bootstrap-ui.css │ │ ├── ui.jqgrid-bootstrap.css │ │ └── ui.jqgrid.css │ │ ├── layer │ │ ├── layer.js │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ ├── skin │ │ │ ├── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ └── moon │ │ │ │ ├── default.png │ │ │ │ └── style.css │ │ └── theme │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── icheck │ │ │ │ ├── flat │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── flat.css │ │ │ │ │ ├── flat.png │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── futurico │ │ │ │ │ ├── futurico.css │ │ │ │ │ ├── futurico.png │ │ │ │ │ └── futurico@2x.png │ │ │ │ ├── icheck.css │ │ │ │ ├── line │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── green.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── line.css │ │ │ │ │ ├── line.png │ │ │ │ │ ├── line@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── red.css │ │ │ │ │ └── yellow.css │ │ │ │ ├── minimal │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── minimal.css │ │ │ │ │ ├── minimal.png │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── polaris │ │ │ │ │ ├── polaris.css │ │ │ │ │ ├── polaris.png │ │ │ │ │ └── polaris@2x.png │ │ │ │ └── square │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── square.css │ │ │ │ │ ├── square.png │ │ │ │ │ ├── square@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── laydate │ │ │ │ ├── default │ │ │ │ │ └── laydate.css │ │ │ │ ├── icon.png │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.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 │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ ├── lay │ │ │ ├── dest │ │ │ │ ├── layui.all.js │ │ │ │ └── layui.mod.js │ │ │ ├── lib │ │ │ │ └── jquery.js │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── table.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ ├── layui.all.js │ │ ├── layui.js │ │ └── modules │ │ │ ├── icheck.js │ │ │ └── pjax.js │ │ ├── pdf │ │ ├── LICENSE │ │ ├── build │ │ │ ├── pdf.js │ │ │ └── pdf.worker.js │ │ └── web │ │ │ ├── cmaps │ │ │ ├── 78-EUC-H.bcmap │ │ │ ├── 78-EUC-V.bcmap │ │ │ ├── 78-H.bcmap │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ ├── 78-V.bcmap │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ ├── Add-H.bcmap │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ ├── Add-V.bcmap │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ ├── B5-H.bcmap │ │ │ ├── B5-V.bcmap │ │ │ ├── B5pc-H.bcmap │ │ │ ├── B5pc-V.bcmap │ │ │ ├── CNS-EUC-H.bcmap │ │ │ ├── CNS-EUC-V.bcmap │ │ │ ├── CNS1-H.bcmap │ │ │ ├── CNS1-V.bcmap │ │ │ ├── CNS2-H.bcmap │ │ │ ├── CNS2-V.bcmap │ │ │ ├── ETHK-B5-H.bcmap │ │ │ ├── ETHK-B5-V.bcmap │ │ │ ├── ETen-B5-H.bcmap │ │ │ ├── ETen-B5-V.bcmap │ │ │ ├── ETenms-B5-H.bcmap │ │ │ ├── ETenms-B5-V.bcmap │ │ │ ├── EUC-H.bcmap │ │ │ ├── EUC-V.bcmap │ │ │ ├── Ext-H.bcmap │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ ├── Ext-V.bcmap │ │ │ ├── GB-EUC-H.bcmap │ │ │ ├── GB-EUC-V.bcmap │ │ │ ├── GB-H.bcmap │ │ │ ├── GB-V.bcmap │ │ │ ├── GBK-EUC-H.bcmap │ │ │ ├── GBK-EUC-V.bcmap │ │ │ ├── GBK2K-H.bcmap │ │ │ ├── GBK2K-V.bcmap │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ ├── GBT-EUC-H.bcmap │ │ │ ├── GBT-EUC-V.bcmap │ │ │ ├── GBT-H.bcmap │ │ │ ├── GBT-V.bcmap │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ ├── H.bcmap │ │ │ ├── HKdla-B5-H.bcmap │ │ │ ├── HKdla-B5-V.bcmap │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ ├── HKm314-B5-H.bcmap │ │ │ ├── HKm314-B5-V.bcmap │ │ │ ├── HKm471-B5-H.bcmap │ │ │ ├── HKm471-B5-V.bcmap │ │ │ ├── HKscs-B5-H.bcmap │ │ │ ├── HKscs-B5-V.bcmap │ │ │ ├── Hankaku.bcmap │ │ │ ├── Hiragana.bcmap │ │ │ ├── KSC-EUC-H.bcmap │ │ │ ├── KSC-EUC-V.bcmap │ │ │ ├── KSC-H.bcmap │ │ │ ├── KSC-Johab-H.bcmap │ │ │ ├── KSC-Johab-V.bcmap │ │ │ ├── KSC-V.bcmap │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ ├── Katakana.bcmap │ │ │ ├── LICENSE │ │ │ ├── NWP-H.bcmap │ │ │ ├── NWP-V.bcmap │ │ │ ├── RKSJ-H.bcmap │ │ │ ├── RKSJ-V.bcmap │ │ │ ├── Roman.bcmap │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ ├── V.bcmap │ │ │ └── WP-Symbol.bcmap │ │ │ ├── compatibility.js │ │ │ ├── compressed.tracemonkey-pldi-09.pdf │ │ │ ├── debugger.js │ │ │ ├── images │ │ │ ├── annotation-check.svg │ │ │ ├── annotation-comment.svg │ │ │ ├── annotation-help.svg │ │ │ ├── annotation-insert.svg │ │ │ ├── annotation-key.svg │ │ │ ├── annotation-newparagraph.svg │ │ │ ├── annotation-noicon.svg │ │ │ ├── annotation-note.svg │ │ │ ├── annotation-paragraph.svg │ │ │ ├── findbarButton-next-rtl.png │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ ├── findbarButton-next.png │ │ │ ├── findbarButton-next@2x.png │ │ │ ├── findbarButton-previous-rtl.png │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ ├── findbarButton-previous.png │ │ │ ├── findbarButton-previous@2x.png │ │ │ ├── grab.cur │ │ │ ├── grabbing.cur │ │ │ ├── loading-icon.gif │ │ │ ├── loading-small.png │ │ │ ├── loading-small@2x.png │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ ├── shadow.png │ │ │ ├── texture.png │ │ │ ├── toolbarButton-bookmark.png │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ ├── toolbarButton-download.png │ │ │ ├── toolbarButton-download@2x.png │ │ │ ├── toolbarButton-menuArrows.png │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ ├── toolbarButton-openFile.png │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ ├── toolbarButton-pageDown.png │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ ├── toolbarButton-pageUp.png │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ ├── toolbarButton-presentationMode.png │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ ├── toolbarButton-print.png │ │ │ ├── toolbarButton-print@2x.png │ │ │ ├── toolbarButton-search.png │ │ │ ├── toolbarButton-search@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ ├── toolbarButton-viewAttachments@2x.png │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ ├── toolbarButton-viewOutline.png │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ ├── toolbarButton-zoomIn.png │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ ├── toolbarButton-zoomOut.png │ │ │ └── toolbarButton-zoomOut@2x.png │ │ │ ├── l10n.js │ │ │ ├── locale │ │ │ ├── ach │ │ │ │ └── viewer.properties │ │ │ ├── af │ │ │ │ └── viewer.properties │ │ │ ├── ak │ │ │ │ └── viewer.properties │ │ │ ├── an │ │ │ │ └── viewer.properties │ │ │ ├── ar │ │ │ │ └── viewer.properties │ │ │ ├── as │ │ │ │ └── viewer.properties │ │ │ ├── ast │ │ │ │ └── viewer.properties │ │ │ ├── az │ │ │ │ └── viewer.properties │ │ │ ├── be │ │ │ │ └── viewer.properties │ │ │ ├── bg │ │ │ │ └── viewer.properties │ │ │ ├── bn-BD │ │ │ │ └── viewer.properties │ │ │ ├── bn-IN │ │ │ │ └── viewer.properties │ │ │ ├── br │ │ │ │ └── viewer.properties │ │ │ ├── bs │ │ │ │ └── viewer.properties │ │ │ ├── ca │ │ │ │ └── viewer.properties │ │ │ ├── cs │ │ │ │ └── viewer.properties │ │ │ ├── csb │ │ │ │ └── viewer.properties │ │ │ ├── cy │ │ │ │ └── viewer.properties │ │ │ ├── da │ │ │ │ └── viewer.properties │ │ │ ├── de │ │ │ │ └── viewer.properties │ │ │ ├── el │ │ │ │ └── viewer.properties │ │ │ ├── en-GB │ │ │ │ └── viewer.properties │ │ │ ├── en-US │ │ │ │ └── viewer.properties │ │ │ ├── en-ZA │ │ │ │ └── viewer.properties │ │ │ ├── eo │ │ │ │ └── viewer.properties │ │ │ ├── es-AR │ │ │ │ └── viewer.properties │ │ │ ├── es-CL │ │ │ │ └── viewer.properties │ │ │ ├── es-ES │ │ │ │ └── viewer.properties │ │ │ ├── es-MX │ │ │ │ └── viewer.properties │ │ │ ├── et │ │ │ │ └── viewer.properties │ │ │ ├── eu │ │ │ │ └── viewer.properties │ │ │ ├── fa │ │ │ │ └── viewer.properties │ │ │ ├── ff │ │ │ │ └── viewer.properties │ │ │ ├── fi │ │ │ │ └── viewer.properties │ │ │ ├── fr │ │ │ │ └── viewer.properties │ │ │ ├── fy-NL │ │ │ │ └── viewer.properties │ │ │ ├── ga-IE │ │ │ │ └── viewer.properties │ │ │ ├── gd │ │ │ │ └── viewer.properties │ │ │ ├── gl │ │ │ │ └── viewer.properties │ │ │ ├── gu-IN │ │ │ │ └── viewer.properties │ │ │ ├── he │ │ │ │ └── viewer.properties │ │ │ ├── hi-IN │ │ │ │ └── viewer.properties │ │ │ ├── hr │ │ │ │ └── viewer.properties │ │ │ ├── hu │ │ │ │ └── viewer.properties │ │ │ ├── hy-AM │ │ │ │ └── viewer.properties │ │ │ ├── id │ │ │ │ └── viewer.properties │ │ │ ├── is │ │ │ │ └── viewer.properties │ │ │ ├── it │ │ │ │ └── viewer.properties │ │ │ ├── ja │ │ │ │ └── viewer.properties │ │ │ ├── ka │ │ │ │ └── viewer.properties │ │ │ ├── kk │ │ │ │ └── viewer.properties │ │ │ ├── km │ │ │ │ └── viewer.properties │ │ │ ├── kn │ │ │ │ └── viewer.properties │ │ │ ├── ko │ │ │ │ └── viewer.properties │ │ │ ├── ku │ │ │ │ └── viewer.properties │ │ │ ├── lg │ │ │ │ └── viewer.properties │ │ │ ├── lij │ │ │ │ └── viewer.properties │ │ │ ├── locale.properties │ │ │ ├── lt │ │ │ │ └── viewer.properties │ │ │ ├── lv │ │ │ │ └── viewer.properties │ │ │ ├── mai │ │ │ │ └── viewer.properties │ │ │ ├── mk │ │ │ │ └── viewer.properties │ │ │ ├── ml │ │ │ │ └── viewer.properties │ │ │ ├── mn │ │ │ │ └── viewer.properties │ │ │ ├── mr │ │ │ │ └── viewer.properties │ │ │ ├── ms │ │ │ │ └── viewer.properties │ │ │ ├── my │ │ │ │ └── viewer.properties │ │ │ ├── nb-NO │ │ │ │ └── viewer.properties │ │ │ ├── nl │ │ │ │ └── viewer.properties │ │ │ ├── nn-NO │ │ │ │ └── viewer.properties │ │ │ ├── nso │ │ │ │ └── viewer.properties │ │ │ ├── oc │ │ │ │ └── viewer.properties │ │ │ ├── or │ │ │ │ └── viewer.properties │ │ │ ├── pa-IN │ │ │ │ └── viewer.properties │ │ │ ├── pl │ │ │ │ └── viewer.properties │ │ │ ├── pt-BR │ │ │ │ └── viewer.properties │ │ │ ├── pt-PT │ │ │ │ └── viewer.properties │ │ │ ├── rm │ │ │ │ └── viewer.properties │ │ │ ├── ro │ │ │ │ └── viewer.properties │ │ │ ├── ru │ │ │ │ └── viewer.properties │ │ │ ├── rw │ │ │ │ └── viewer.properties │ │ │ ├── sah │ │ │ │ └── viewer.properties │ │ │ ├── si │ │ │ │ └── viewer.properties │ │ │ ├── sk │ │ │ │ └── viewer.properties │ │ │ ├── sl │ │ │ │ └── viewer.properties │ │ │ ├── son │ │ │ │ └── viewer.properties │ │ │ ├── sq │ │ │ │ └── viewer.properties │ │ │ ├── sr │ │ │ │ └── viewer.properties │ │ │ ├── sv-SE │ │ │ │ └── viewer.properties │ │ │ ├── sw │ │ │ │ └── viewer.properties │ │ │ ├── ta-LK │ │ │ │ └── viewer.properties │ │ │ ├── ta │ │ │ │ └── viewer.properties │ │ │ ├── te │ │ │ │ └── viewer.properties │ │ │ ├── th │ │ │ │ └── viewer.properties │ │ │ ├── tl │ │ │ │ └── viewer.properties │ │ │ ├── tn │ │ │ │ └── viewer.properties │ │ │ ├── tr │ │ │ │ └── viewer.properties │ │ │ ├── uk │ │ │ │ └── viewer.properties │ │ │ ├── ur │ │ │ │ └── viewer.properties │ │ │ ├── vi │ │ │ │ └── viewer.properties │ │ │ ├── wo │ │ │ │ └── viewer.properties │ │ │ ├── xh │ │ │ │ └── viewer.properties │ │ │ ├── zh-CN │ │ │ │ └── viewer.properties │ │ │ ├── zh-TW │ │ │ │ └── viewer.properties │ │ │ └── zu │ │ │ │ └── viewer.properties │ │ │ ├── viewer.css │ │ │ ├── viewer.html │ │ │ └── viewer.js │ │ ├── treegrid │ │ ├── img │ │ │ ├── collapse.png │ │ │ ├── expand.png │ │ │ ├── file.png │ │ │ └── folder.png │ │ ├── jquery.treegrid.bootstrap3.js │ │ ├── jquery.treegrid.css │ │ ├── jquery.treegrid.extension.js │ │ ├── jquery.treegrid.min.js │ │ └── tree.table.js │ │ └── ztree │ │ ├── css │ │ ├── awesomeStyle │ │ │ ├── awesome.css │ │ │ ├── awesome.less │ │ │ ├── fa.less │ │ │ └── img │ │ │ │ └── loading.gif │ │ ├── metroStyle │ │ │ ├── img │ │ │ │ ├── line_conn.png │ │ │ │ ├── loading.gif │ │ │ │ ├── metro.gif │ │ │ │ └── metro.png │ │ │ └── metroStyle.css │ │ └── 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 │ │ └── jquery.ztree.all.min.js │ └── tip.html ├── portal-web ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── king │ │ │ ├── app │ │ │ ├── annotation │ │ │ │ ├── Login.java │ │ │ │ └── LoginUser.java │ │ │ ├── config │ │ │ │ └── WebMvcConfig.java │ │ │ ├── controller │ │ │ │ └── ApiLoginController.java │ │ │ ├── dao │ │ │ │ └── UserDao.java │ │ │ ├── entity │ │ │ │ └── AppUser.java │ │ │ ├── interceptor │ │ │ │ └── AuthorizationInterceptor.java │ │ │ ├── resolver │ │ │ │ └── LoginUserHandlerMethodArgumentResolver.java │ │ │ ├── service │ │ │ │ ├── UserService.java │ │ │ │ └── impl │ │ │ │ │ └── UserServiceImpl.java │ │ │ └── utils │ │ │ │ └── JwtUtils.java │ │ │ ├── aspect │ │ │ ├── DuplicateAspect.java │ │ │ └── SysLogAspect.java │ │ │ ├── filter │ │ │ ├── GlobalFilter.java │ │ │ └── XssFilter.java │ │ │ ├── listener │ │ │ └── ApplicationInitializedListener.java │ │ │ ├── oauth2 │ │ │ ├── OAuth2Filter.java │ │ │ ├── OAuth2Realm.java │ │ │ ├── OAuth2Token.java │ │ │ └── ShiroConfig.java │ │ │ ├── rest │ │ │ ├── oss │ │ │ │ ├── CrawingController.java │ │ │ │ ├── OCRController.java │ │ │ │ ├── OssFileController.java │ │ │ │ └── OssPdfController.java │ │ │ └── smp │ │ │ │ ├── GenRequstIdController.java │ │ │ │ ├── ScheduleJobController.java │ │ │ │ ├── ScheduleJobLogController.java │ │ │ │ ├── StatisticsController.java │ │ │ │ ├── SysConfigController.java │ │ │ │ ├── SysDeptController.java │ │ │ │ ├── SysDicController.java │ │ │ │ ├── SysLogController.java │ │ │ │ ├── SysLoginController.java │ │ │ │ ├── SysMenuController.java │ │ │ │ ├── SysRoleController.java │ │ │ │ └── SysUserController.java │ │ │ └── utils │ │ │ ├── AbstractController.java │ │ │ ├── GatewayUtils.java │ │ │ ├── HttpContextUtils.java │ │ │ ├── IPUtils.java │ │ │ ├── KaptchaConfig.java │ │ │ ├── Query.java │ │ │ ├── RRExceptionHandler.java │ │ │ ├── RedisShiroSession.java │ │ │ ├── ShiroUtils.java │ │ │ ├── XssHttpServletRequestWrapper.java │ │ │ ├── cloud │ │ │ ├── AliyunCloudStorageService.java │ │ │ ├── CloudStorageService.java │ │ │ ├── DocConverter.java │ │ │ ├── ImageUtils.java │ │ │ ├── OCRUtils.java │ │ │ ├── OSSFactory.java │ │ │ ├── PdfUtils.java │ │ │ ├── QcloudCloudStorageService.java │ │ │ ├── QiniuCloudStorageService.java │ │ │ └── QrCodeUtil.java │ │ │ ├── excel │ │ │ ├── Excel2007Reader.java │ │ │ ├── ExcelReaderUtil.java │ │ │ ├── ExcelRowReader.java │ │ │ ├── ExcelUtil.java │ │ │ └── IExcelRowReader.java │ │ │ ├── gen │ │ │ ├── aspect │ │ │ │ ├── ChooseGenDataSource.java │ │ │ │ ├── DataSourcesAspect.java │ │ │ │ └── HandleGenDataSource.java │ │ │ ├── controller │ │ │ │ └── SysGeneratorController.java │ │ │ ├── dao │ │ │ │ └── SysGeneratorDao.java │ │ │ ├── entity │ │ │ │ ├── ColumnEntity.java │ │ │ │ └── TableEntity.java │ │ │ ├── service │ │ │ │ ├── SysGeneratorService.java │ │ │ │ └── impl │ │ │ │ │ └── SysGeneratorServiceImpl.java │ │ │ └── utils │ │ │ │ └── GenUtils.java │ │ │ └── swagger │ │ │ ├── config │ │ │ ├── JavaConfig.java │ │ │ └── SwaggerConfig.java │ │ │ ├── controller │ │ │ └── WordController.java │ │ │ ├── entity │ │ │ ├── Body.java │ │ │ ├── Head.java │ │ │ ├── Info.java │ │ │ ├── Request.java │ │ │ └── Response.java │ │ │ └── service │ │ │ ├── WordService.java │ │ │ └── impl │ │ │ └── WordServiceImpl.java │ ├── resources │ │ ├── app │ │ │ └── UserDao.xml │ │ ├── gen │ │ │ ├── SysGeneratorDao.xml │ │ │ ├── generator.properties │ │ │ └── generator.xml │ │ ├── log4j.properties │ │ ├── settings.properties │ │ ├── spring-dubbo.xml │ │ ├── spring-mongodb.xml │ │ ├── spring-mvc.xml │ │ ├── spring-redis.xml │ │ └── template │ │ │ ├── Controller.java.vm │ │ │ ├── Dao.java.vm │ │ │ ├── Dao.xml.vm │ │ │ ├── Entity.java.vm │ │ │ ├── Service.java.vm │ │ │ ├── ServiceImpl.java.vm │ │ │ ├── list.html.vm │ │ │ └── list.js.vm │ └── webapp │ │ ├── WEB-INF │ │ ├── lib │ │ │ ├── crypt.jar │ │ │ ├── icepdf-core.jar │ │ │ ├── icepdf-extra.jar │ │ │ ├── icepdf-pro-intl.jar │ │ │ ├── icepdf-pro.jar │ │ │ └── icepdf-viewer.jar │ │ └── web.xml │ │ └── index.html │ └── test │ ├── java │ └── test │ │ ├── CountExample.java │ │ ├── Creawing.java │ │ ├── DocConverter.java │ │ ├── IcePdf.java │ │ ├── IdGen.java │ │ ├── ImageConverter.java │ │ ├── ImageUtils.java │ │ ├── JavaassistTest.java │ │ ├── MyDailyRollingFileAppender.java │ │ ├── PdfUtils.java │ │ ├── QrCodeUtil.java │ │ ├── SpiderDemo1.java │ │ ├── Test.java │ │ ├── ViewPdf.java │ │ ├── WaterMarkUtils.java │ │ ├── excel │ │ ├── Excel2007Reader.java │ │ ├── ExcelHande.java │ │ ├── ExcelReaderUtil.java │ │ ├── ExcelRowReader.java │ │ └── IExcelRowReader.java │ │ ├── ocr │ │ ├── AuthService.java │ │ ├── Base64Util.java │ │ ├── FileUtil.java │ │ ├── HttpUtil.java │ │ ├── OCR.java │ │ └── Sample.java │ │ ├── poi │ │ ├── ExcelReaderUtil.java │ │ ├── ExcelRowReader.java │ │ ├── ExcelXlsxReader.java │ │ ├── IExcelRowReader.java │ │ └── ImportBigDB.java │ │ ├── queue │ │ ├── BlockingQueueTest.java │ │ ├── Consumer.java │ │ └── Producer.java │ │ ├── redis │ │ ├── IdGenerator.java │ │ └── RedisUtils.java │ │ ├── rock │ │ ├── RLock.java │ │ └── ZLock.java │ │ └── xml │ │ ├── CarData.xml │ │ ├── GenXml.java │ │ ├── Test.java │ │ ├── XmlHandler1.java │ │ ├── annotation │ │ ├── Column.java │ │ └── Root.java │ │ ├── base │ │ ├── Range.java │ │ └── XmlBase.java │ │ ├── handler │ │ └── XmlHandler.java │ │ ├── util │ │ ├── Strkit.java │ │ └── Xml4bigKit.java │ │ └── vo │ │ ├── Car.java │ │ ├── Car2.java │ │ ├── CarEngine.java │ │ ├── Cell.java │ │ └── Row.java │ └── resources │ ├── applicationContext.xml │ └── redis.xml └── smp ├── pom.xml └── src └── main ├── java └── com │ └── king │ ├── SmpServer.java │ ├── aspect │ ├── DataFilterAspect.java │ └── DynamicColFilterAspect.java │ ├── config │ └── ExecutorConfig.java │ ├── dao │ ├── ScheduleJobDao.java │ ├── ScheduleJobLogDao.java │ ├── SysConfigDao.java │ ├── SysDeptDao.java │ ├── SysDicDao.java │ ├── SysLogDao.java │ ├── SysMenuDao.java │ ├── SysRoleDao.java │ ├── SysRoleDeptDao.java │ ├── SysRoleMenuDao.java │ ├── SysUserDao.java │ └── SysUserRoleDao.java │ ├── listener │ └── ApplicationInitializedListener.java │ ├── services │ └── spi │ │ ├── ScheduleJobServiceImpl.java │ │ ├── ShiroServiceImpl.java │ │ ├── SysConfigServiceImpl.java │ │ ├── SysDeptServiceImpl.java │ │ ├── SysDicServiceImpl.java │ │ ├── SysLogServiceImpl.java │ │ ├── SysMenuServiceImpl.java │ │ ├── SysRoleServiceImpl.java │ │ └── SysUserServiceImpl.java │ └── utils │ ├── Query.java │ ├── ScheduleJobs.java │ ├── ScheduleUtils.java │ └── TestTask.java └── resources ├── META-INF └── spring │ ├── spring-data.xml │ ├── spring-dubbo.xml │ ├── spring-mongodb.xml │ ├── spring-redis.xml │ └── spring-scheduler.xml ├── log4j.xml ├── mapper ├── ScheduleJobDao.xml ├── ScheduleJobLogDao.xml ├── SysConfigDao.xml ├── SysDeptDao.xml ├── SysDicDao.xml ├── SysLogDao.xml ├── SysMenuDao.xml ├── SysRoleDao.xml ├── SysRoleDeptDao.xml ├── SysRoleMenuDao.xml ├── SysUserDao.xml └── SysUserRoleDao.xml └── settings.properties /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /20181016154817.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/20181016154817.jpg -------------------------------------------------------------------------------- /20181019154819.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/20181019154819.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman 2 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/annotation/DataFilter.java: -------------------------------------------------------------------------------- 1 | package com.king.common.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 数据权限过滤注解 7 | * @author King chen 8 | * @date 2017年12月25日 9 | */ 10 | @Target(ElementType.METHOD) 11 | @Retention(RetentionPolicy.RUNTIME) 12 | @Documented 13 | public @interface DataFilter { 14 | /** 表的别名 */ 15 | String tableAlias() default ""; 16 | 17 | /** true:没有本部门数据权限,也能查询本人数据 */ 18 | boolean user() default true; 19 | 20 | /** true:数据权限范围为1级。查到1级下所有数据、一般为sass企业级数据权限 */ 21 | boolean top() default false; 22 | } 23 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/annotation/DuplicateFilter.java: -------------------------------------------------------------------------------- 1 | package com.king.common.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 防止表单重复提交过滤 7 | * @author King chen 8 | * @emai 396885563@qq.com 9 | * @date 2018年9月30日 10 | */ 11 | @Target(ElementType.METHOD) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | @Documented 14 | public @interface DuplicateFilter { 15 | 16 | boolean check() default true; 17 | } 18 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/annotation/DynamicColFilter.java: -------------------------------------------------------------------------------- 1 | package com.king.common.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | 6 | /** 7 | * 动态列 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年8月27日 11 | */ 12 | @Target(ElementType.METHOD) 13 | @Retention(RetentionPolicy.RUNTIME) 14 | @Documented 15 | public @interface DynamicColFilter { 16 | 17 | boolean status() default true; 18 | } 19 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/mongodb/repo/ExceptionLogRepo.java: -------------------------------------------------------------------------------- 1 | package com.king.common.mongodb.repo; 2 | 3 | import com.king.common.mongodb.model.ExceptionLogVO; 4 | import com.king.common.mongodb.mongo.BaseMongoRepository; 5 | 6 | /** 7 | * 异常日志仓库接口 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年4月19日 11 | */ 12 | public interface ExceptionLogRepo extends BaseMongoRepository { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/mongodb/repo/ExceptionLogRepoImpl.java: -------------------------------------------------------------------------------- 1 | package com.king.common.mongodb.repo; 2 | 3 | import org.springframework.stereotype.Repository; 4 | 5 | import com.king.common.mongodb.model.ExceptionLogVO; 6 | import com.king.common.mongodb.mongo.BaseMongoRepositoryImpl; 7 | 8 | /** 9 | * 异常日志数据接口实现类 10 | * @author King chen 11 | * @emai 396885563@qq.com 12 | * @date 2018年4月19日 13 | */ 14 | @Repository 15 | public class ExceptionLogRepoImpl extends BaseMongoRepositoryImpl implements ExceptionLogRepo { 16 | 17 | 18 | } 19 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/mongodb/repo/SysLogRepo.java: -------------------------------------------------------------------------------- 1 | package com.king.common.mongodb.repo; 2 | 3 | import com.king.common.mongodb.model.SysLogVO; 4 | import com.king.common.mongodb.mongo.BaseMongoRepository; 5 | 6 | /** 7 | * 日志仓库接口 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年4月19日 11 | */ 12 | public interface SysLogRepo extends BaseMongoRepository { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/mongodb/repo/SysLogRepoImpl.java: -------------------------------------------------------------------------------- 1 | package com.king.common.mongodb.repo; 2 | 3 | import org.springframework.stereotype.Repository; 4 | 5 | import com.king.common.mongodb.model.SysLogVO; 6 | import com.king.common.mongodb.mongo.BaseMongoRepositoryImpl; 7 | 8 | /** 9 | * 日志数据接口实现类 10 | * @author King chen 11 | * @emai 396885563@qq.com 12 | * @date 2018年4月19日 13 | */ 14 | @Repository 15 | public class SysLogRepoImpl extends BaseMongoRepositoryImpl implements SysLogRepo { 16 | 17 | 18 | } 19 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/date/DatePattern.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.date; 2 | 3 | /** 4 | * @author King chen 5 | * @emai 396885563@qq.com 6 | * @date 2018年4月20日 7 | */ 8 | public enum DatePattern { 9 | _YYYYMMDD ("yyyy-MM-dd"), 10 | _YYYYMMDDHHMISS("yyyy-MM-dd HH:mm:ss"), 11 | YYYYMMDD ("yyyyMMdd"), 12 | YYYYMMDDHHMISS("yyyyMMddHHmmss"); 13 | 14 | private final String value; 15 | private DatePattern(String value) { 16 | this.value = value; 17 | } 18 | 19 | public String toString(){ 20 | return value; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/exception/ServiceException.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.exception; 2 | 3 | /** 4 | * @author King chen 5 | * @emai 396885563@qq.com 6 | * @date 2018年4月19日 7 | */ 8 | public class ServiceException extends RuntimeException { 9 | 10 | private static final long serialVersionUID = 1L; 11 | 12 | public ServiceException() 13 | { 14 | super(); 15 | } 16 | 17 | public ServiceException(String message) 18 | { 19 | super(message); 20 | } 21 | 22 | public ServiceException(String message, Throwable cause) 23 | { 24 | super(message, cause); 25 | } 26 | 27 | public ServiceException(Throwable cause) 28 | { 29 | super(cause); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/file/xml/annotation/Column.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.file.xml.annotation; 2 | import java.lang.annotation.ElementType; 3 | import java.lang.annotation.Retention; 4 | import java.lang.annotation.RetentionPolicy; 5 | import java.lang.annotation.Target; 6 | /** 7 | * 定义需要解析的实体属性 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年8月16日 11 | */ 12 | @Retention(RetentionPolicy.RUNTIME) 13 | @Target(ElementType.FIELD) 14 | public @ interface Column { 15 | 16 | /** 17 | * 字段名 18 | */ 19 | public String name(); 20 | 21 | /** 22 | * true:值为空也生成、false相反 23 | */ 24 | public String required() default "1"; 25 | } 26 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/file/xml/annotation/Root.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.file.xml.annotation; 2 | import java.lang.annotation.ElementType; 3 | import java.lang.annotation.Retention; 4 | import java.lang.annotation.RetentionPolicy; 5 | import java.lang.annotation.Target; 6 | /** 7 | * 指定根节点 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年8月16日 11 | */ 12 | @Retention(RetentionPolicy.RUNTIME) 13 | @Target(ElementType.TYPE) 14 | public @ interface Root { 15 | /** 16 | * 指定根节点名称 17 | */ 18 | public String name(); 19 | } 20 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/file/xml/base/Range.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.file.xml.base; 2 | 3 | /** 4 | * 每次解析的范围 5 | * @author King chen 6 | * @emai 396885563@qq.com 7 | * @date 2018年8月16日 8 | */ 9 | public class Range { 10 | private int from =0; 11 | private int to =0; 12 | public int getFrom() { 13 | return from; 14 | } 15 | public void setFrom(int from) { 16 | this.from = from; 17 | } 18 | public int getTo() { 19 | return to; 20 | } 21 | public void setTo(int to) { 22 | this.to = to; 23 | } 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/file/xml/handler/XmlHandler.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.file.xml.handler; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | /** 7 | * 解析完后续业务接口 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年8月16日 11 | */ 12 | public interface XmlHandler { 13 | 14 | public void hande(Map> reMap); 15 | 16 | } 17 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/security/coder/BaseDigestPasswordEncoder.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.security.coder; 2 | 3 | import com.king.common.utils.security.BasePasswordEncoder; 4 | 5 | public abstract class BaseDigestPasswordEncoder extends BasePasswordEncoder { 6 | private boolean encodeHashAsBase64 = false; 7 | 8 | public boolean getEncodeHashAsBase64() { 9 | return this.encodeHashAsBase64; 10 | } 11 | 12 | public void setEncodeHashAsBase64(boolean encodeHashAsBase64) { 13 | this.encodeHashAsBase64 = encodeHashAsBase64; 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/security/coder/SecurityCoder.java: -------------------------------------------------------------------------------- 1 | 2 | package com.king.common.utils.security.coder; 3 | 4 | import java.security.Security; 5 | 6 | /** 7 | * 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年6月1日 11 | */ 12 | public abstract class SecurityCoder { 13 | private static Byte ADDFLAG = 0; 14 | static { 15 | if (ADDFLAG == 0) { 16 | // 加入BouncyCastleProvider支持 17 | Security.addProvider(new BouncyCastleProvider()); 18 | ADDFLAG = 1; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/thread/SensibleClone.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.thread; 2 | 3 | /** 4 | * @author King chen 5 | * @emai 396885563@qq.com 6 | * @date 2018年4月19日 7 | * @param 8 | */ 9 | public interface SensibleClone> extends Cloneable { 10 | public T sensibleClone(); 11 | } 12 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/thread/SerialNoHolder.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.thread; 2 | 3 | /** 4 | * 在线程级别保存应用编码、交易流水号、操作用户编码 5 | * @author King chen 6 | * @emai 396885563@qq.com 7 | * @date 2018年3月30日 8 | */ 9 | public class SerialNoHolder { 10 | public static ThreadLocal serialNo = new ThreadLocal();//交易流程号 11 | public static ThreadLocal userCode = new ThreadLocal();//用户编码 12 | public static ThreadLocal appCode = new ThreadLocal();//应用编码 13 | 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/validator/Assert.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.validator; 2 | 3 | import org.apache.commons.lang3.StringUtils; 4 | 5 | import com.king.common.utils.exception.RRException; 6 | 7 | /** 8 | * 数据校验 9 | * @author King chen 10 | * @date 2017年12月25日 11 | */ 12 | public abstract class Assert { 13 | 14 | public static void isBlank(String str, String message) { 15 | if (StringUtils.isBlank(str)) { 16 | throw new RRException(message); 17 | } 18 | } 19 | 20 | public static void isNull(Object object, String message) { 21 | if (object == null) { 22 | throw new RRException(message); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/validator/LimitMap.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.validator; 2 | 3 | import java.util.LinkedHashMap; 4 | import java.util.Map; 5 | 6 | /** 7 | * 限制map大小、防止传参数过大。 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年5月21日 11 | */ 12 | public abstract class LimitMap implements java.util.Map { 13 | LinkedHashMap Map= new LinkedHashMap() { 14 | int maximumSize = 200; 15 | private static final long serialVersionUID = 1L; 16 | protected boolean removeEldestEntry(Map.Entry eldest) { 17 | return size() > maximumSize; 18 | } 19 | }; 20 | } 21 | 22 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/validator/group/AddGroup.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.validator.group; 2 | 3 | /** 4 | * 新增数据 Group 5 | * @author King chen 6 | * @date 2017年12月25日 7 | */ 8 | public interface AddGroup { 9 | } 10 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/validator/group/AliyunGroup.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.validator.group; 2 | 3 | /** 4 | * 阿里云 5 | * @author King chen 6 | * @date 2017年12月25日 7 | */ 8 | public interface AliyunGroup { 9 | } 10 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/validator/group/Group.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.validator.group; 2 | 3 | import javax.validation.GroupSequence; 4 | 5 | /** 6 | * 定义校验顺序,如果AddGroup组失败,则UpdateGroup组不会再校验 7 | * @author King chen 8 | * @date 2017年12月25日 9 | */ 10 | @GroupSequence({AddGroup.class, UpdateGroup.class}) 11 | public interface Group { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/validator/group/QcloudGroup.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.validator.group; 2 | 3 | /** 4 | * 腾讯云 5 | * @author King chen 6 | * @date 2017年12月25日 7 | */ 8 | public interface QcloudGroup { 9 | } 10 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/validator/group/QiniuGroup.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.validator.group; 2 | 3 | /** 4 | * 七牛 5 | * @author King chen 6 | * @date 2017年12月25日 7 | */ 8 | public interface QiniuGroup { 9 | } 10 | -------------------------------------------------------------------------------- /common/src/main/java/com/king/common/utils/validator/group/UpdateGroup.java: -------------------------------------------------------------------------------- 1 | package com.king.common.utils.validator.group; 2 | 3 | 4 | /** 5 | * 更新数据 Group 6 | * @author King chen 7 | * @date 2017年12月25日 8 | */ 9 | public interface UpdateGroup { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /common/src/test/java/tool/Burger.java: -------------------------------------------------------------------------------- 1 | package tool; 2 | 3 | public abstract class Burger implements Item { 4 | 5 | /* @Override 6 | public Packing packing() { 7 | return new Wrapper(); 8 | }*/ 9 | 10 | @Override 11 | public abstract float price(); 12 | } 13 | -------------------------------------------------------------------------------- /common/src/test/java/tool/Item.java: -------------------------------------------------------------------------------- 1 | package tool; 2 | 3 | public interface Item { 4 | public String name(); 5 | // public Packing packing(); 6 | public float price(); 7 | } -------------------------------------------------------------------------------- /common/src/test/java/tool/mq/HashUtil.java: -------------------------------------------------------------------------------- 1 | package tool.mq; 2 | import java.util.zip.CRC32; 3 | public class HashUtil { 4 | public static long crc32Code(byte[] bytes) { 5 | CRC32 crc32 = new CRC32(); 6 | crc32.update(bytes); 7 | return crc32.getValue(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /common/src/test/java/tool/ss.java: -------------------------------------------------------------------------------- 1 | package tool; 2 | 3 | public class ss { 4 | 5 | public static void main(String[] args) { 6 | // 产生一个对象 7 | Prototype thing = new Prototype(); 8 | 9 | // 拷贝一个对象 10 | // Prototype cloneThing = thing.clone(); 11 | // System.out.println(cloneThing); 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /interface-service/src/main/java/com/king/api/oss/OssDoc2pdfService.java: -------------------------------------------------------------------------------- 1 | package com.king.api.oss; 2 | 3 | import com.king.dal.gen.model.oss.OssDoc2pdf; 4 | import com.king.dal.gen.model.oss.OssWaterSetting; 5 | import com.king.dal.gen.service.BaseService; 6 | 7 | 8 | /** 9 | * 文档转pdf、生成图片 10 | * 11 | * @author king chen 12 | * @email 396885563@qq.com 13 | * @date 2018-07-25 10:14:40 14 | */ 15 | public interface OssDoc2pdfService extends BaseService{ 16 | /** 17 | * 根据ID,查询 18 | */ 19 | OssWaterSetting queryWaterSetting(Object userId); 20 | /** 21 | * 更新 22 | */ 23 | void saveOrUpdate(OssWaterSetting object); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /interface-service/src/main/java/com/king/api/oss/OssFileService.java: -------------------------------------------------------------------------------- 1 | package com.king.api.oss; 2 | 3 | import com.king.dal.gen.model.oss.OssFile; 4 | import com.king.dal.gen.service.BaseService; 5 | 6 | 7 | /** 8 | * 文件上传 9 | * 10 | * @author king chen 11 | * @email 396885563@qq.com 12 | * @date 2018-05-23 14:25:16 13 | */ 14 | public interface OssFileService extends BaseService{ 15 | 16 | 17 | } 18 | -------------------------------------------------------------------------------- /interface-service/src/main/java/com/king/api/smp/ShiroService.java: -------------------------------------------------------------------------------- 1 | package com.king.api.smp; 2 | 3 | 4 | import java.util.Set; 5 | 6 | import com.king.dal.gen.model.smp.SysUser; 7 | 8 | /** 9 | * shiro相关接口 10 | * @author King chen 11 | * @emai 396885563@qq.com 12 | * @date 2018年1月11日 13 | */ 14 | public interface ShiroService { 15 | /** 16 | * 获取用户权限列表 17 | */ 18 | Set getUserPermissions(Object userId,boolean cache,String token); 19 | 20 | /** 21 | * 根据用户ID,查询用户 22 | * @param userId 23 | */ 24 | SysUser queryUser(Object userId); 25 | } 26 | -------------------------------------------------------------------------------- /interface-service/src/main/java/com/king/api/smp/SysDicService.java: -------------------------------------------------------------------------------- 1 | package com.king.api.smp; 2 | 3 | 4 | import java.util.List; 5 | 6 | import com.king.dal.gen.model.smp.SysDic; 7 | import com.king.dal.gen.model.smp.SysDicTerm; 8 | import com.king.dal.gen.service.BaseService; 9 | 10 | /** 11 | * 数据字典明细表 12 | * 13 | * @author king chen 14 | * @email 396885563@qq.com 15 | * @date 2018-05-08 17:26:32 16 | */ 17 | public interface SysDicService extends BaseService{ 18 | 19 | /** 20 | * 根据字典编码查询字典项 21 | * @param code 22 | * @return 23 | */ 24 | List queryDicTerm(Object code); 25 | 26 | /** 27 | * 根据父节点查询 28 | * @param parentd 29 | * @return 30 | */ 31 | List queryParentList(Object parentId); 32 | } 33 | -------------------------------------------------------------------------------- /interface-service/src/main/java/com/king/api/smp/SysLogService.java: -------------------------------------------------------------------------------- 1 | package com.king.api.smp; 2 | 3 | 4 | import com.king.dal.gen.model.smp.SysLog; 5 | import com.king.dal.gen.service.BaseService; 6 | 7 | 8 | /** 9 | * 系统日志 10 | * @author King chen 11 | * @email 396885563@qq.com 12 | * @date 2017年12月29日 13 | */ 14 | public interface SysLogService extends BaseService{ 15 | 16 | 17 | } 18 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/OssServer.java: -------------------------------------------------------------------------------- 1 | package com.king; 2 | 3 | /** 4 | * 云盘子系统 5 | * 用dubbo的main方法方式启动容器 6 | * @author King chen 7 | * @date 2017年12月15日 8 | */ 9 | public class OssServer { 10 | public static void main(String[] args) throws Exception { 11 | com.alibaba.dubbo.container.Main.main(args); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/dao/OssDoc2pdfDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import com.king.dal.gen.model.oss.OssDoc2pdf; 4 | import com.king.dal.gen.dao.BaseDao; 5 | 6 | 7 | /** 8 | * 文档转pdf、生成图片 9 | * 10 | * @author king chen 11 | * @email 396885563@qq.com 12 | * @date 2018-07-25 10:14:40 13 | */ 14 | public interface OssDoc2pdfDao extends BaseDao { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/dao/OssFileDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import com.king.dal.gen.model.oss.OssFile; 4 | import com.king.dal.gen.dao.BaseDao; 5 | 6 | 7 | /** 8 | * 文件上传 9 | * 10 | * @author king chen 11 | * @email 396885563@qq.com 12 | * @date 2018-05-23 14:25:16 13 | */ 14 | public interface OssFileDao extends BaseDao { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/dao/OssWaterSettingDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import com.king.dal.gen.model.oss.OssWaterSetting; 4 | import com.king.dal.gen.dao.BaseDao; 5 | 6 | 7 | /** 8 | * 9 | * 10 | * @author king chen 11 | * @email 396885563@qq.com 12 | * @date 2018-07-30 10:51:12 13 | */ 14 | public interface OssWaterSettingDao extends BaseDao { 15 | 16 | /** 17 | * 根据用户Id查询水印 18 | * @param userId 19 | * @return 20 | */ 21 | OssWaterSetting queryByUser(Object userId); 22 | } 23 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/listener/ApplicationInitializedListener.java: -------------------------------------------------------------------------------- 1 | package com.king.listener; 2 | import javax.annotation.PostConstruct; 3 | 4 | import org.springframework.beans.factory.annotation.Autowired; 5 | import org.springframework.stereotype.Component; 6 | 7 | import com.king.common.utils.entityMapper.GenEntityMapper; 8 | 9 | /** 10 | * spring 容器启动后加载解析表与实体的映射 11 | * 12 | * @author king chen 13 | * @emai 396885563@qq.com 14 | * @date 2018年1月11日 15 | */ 16 | @Component 17 | public class ApplicationInitializedListener { 18 | 19 | @Autowired 20 | private GenEntityMapper genEnttyMapper; 21 | 22 | @PostConstruct 23 | public void loadEnttyMapper() { 24 | // spring 启动后加载 25 | genEnttyMapper.generateEnttyMapper(); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/services/spi/OssFileServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.king.services.spi; 2 | 3 | import org.springframework.stereotype.Service; 4 | import com.king.dal.gen.service.BaseServiceImpl; 5 | import com.king.dal.gen.model.oss.OssFile; 6 | import com.king.api.oss.OssFileService; 7 | 8 | 9 | 10 | @Service("ossFileService") 11 | public class OssFileServiceImpl extends BaseServiceImpl implements OssFileService { 12 | 13 | 14 | } 15 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/utils/Query.java: -------------------------------------------------------------------------------- 1 | package com.king.utils; 2 | 3 | import com.alibaba.com.caucho.hessian.io.JavaSerializer; 4 | 5 | /** 6 | * Hessian反序列化找不到此类会警告 7 | * 空类 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年6月4日 11 | */ 12 | public class Query extends JavaSerializer{ 13 | 14 | public Query(Class cl) { 15 | super(cl, null); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /oss/src/main/java/com/king/utils/fastdfs/DownloadCallback.java: -------------------------------------------------------------------------------- 1 | 2 | package com.king.utils.fastdfs; 3 | 4 | /** 5 | * @author King chen 6 | * @emai 396885563@qq.com 7 | * @date 2018年2月28日 8 | */ 9 | public interface DownloadCallback 10 | { 11 | /** 12 | * recv file content callback function, may be called more than once when the file downloaded 13 | * @param file_size file size 14 | * @param data data buff 15 | * @param bytes data bytes 16 | * @return 0 success, return none zero(errno) if fail 17 | */ 18 | public int recv(long file_size, byte[] data, int bytes); 19 | } 20 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/utils/fastdfs/MyException.java: -------------------------------------------------------------------------------- 1 | 2 | package com.king.utils.fastdfs; 3 | 4 | /** 5 | * @author King chen 6 | * @emai 396885563@qq.com 7 | * @date 2018年2月28日 8 | */ 9 | @SuppressWarnings("serial") 10 | public class MyException extends Exception 11 | { 12 | public MyException() 13 | { 14 | } 15 | 16 | public MyException(String message) 17 | { 18 | super(message); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/utils/fastdfs/UploadCallback.java: -------------------------------------------------------------------------------- 1 | 2 | package com.king.utils.fastdfs; 3 | 4 | import java.io.IOException; 5 | import java.io.OutputStream; 6 | 7 | /** 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年2月28日 11 | */ 12 | public interface UploadCallback 13 | { 14 | /** 15 | * send file content callback function, be called only once when the file uploaded 16 | * @param out output stream for writing file content 17 | * @return 0 success, return none zero(errno) if fail 18 | */ 19 | public int send(OutputStream out) throws IOException; 20 | } 21 | -------------------------------------------------------------------------------- /oss/src/main/java/com/king/utils/fastdht/ServerInfo.java: -------------------------------------------------------------------------------- 1 | package com.king.utils.fastdht; 2 | 3 | import java.net.InetSocketAddress; 4 | import java.net.Socket; 5 | 6 | /** 7 | * @author King chen 8 | * @emai 396885563@qq.com 9 | * @date 2018年2月28日 10 | */ 11 | public class ServerInfo 12 | { 13 | protected InetSocketAddress address; 14 | protected Socket sock = null; 15 | 16 | public ServerInfo(InetSocketAddress address) 17 | { 18 | this.address = address; 19 | } 20 | 21 | public InetSocketAddress getAddress() 22 | { 23 | return this.address; 24 | } 25 | 26 | public Socket getSocket() 27 | { 28 | return this.sock; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /portal-html/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Archetype Created Web Application 7 | 8 | -------------------------------------------------------------------------------- /portal-html/src/main/webapp/main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 欢迎页 7 | 8 | 9 | 10 | 11 |
12 |
基本信息
13 |
14 | 15 |
16 |
17 | 18 | -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/favicon.ico -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/element-ui-2.3.9/lib/theme-chalk/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/element-ui-2.3.9/lib/theme-chalk/fonts/element-icons.ttf -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/element-ui-2.3.9/lib/theme-chalk/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/element-ui-2.3.9/lib/theme-chalk/fonts/element-icons.woff -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/skin/default/icon.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/skin/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/skin/moon/default.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/theme/default/icon.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/aero.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/aero@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/blue.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/blue@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/flat.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/flat@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/green.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/green@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/grey.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/grey@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/orange.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/orange@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/pink.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/pink@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/purple.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/purple@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/red.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/red@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/yellow.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/futurico/futurico.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/line/line.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/line/line@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/aero.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/blue.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/green.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/green@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/grey.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/minimal.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/orange.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/pink.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/purple.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/red.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/red@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/yellow.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/polaris/polaris.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/aero.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/aero@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/blue.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/blue@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/green.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/green@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/grey.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/grey@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/orange.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/orange@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/pink.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/pink@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/purple.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/purple@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/red.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/red@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/square.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/square@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/yellow.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/icheck/square/yellow@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/laydate/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/laydate/icon.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/font/iconfont.eot -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/font/iconfont.woff -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/0.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/1.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/10.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/11.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/12.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/13.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/14.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/15.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/16.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/17.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/18.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/19.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/2.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/20.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/21.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/22.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/23.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/24.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/25.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/26.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/27.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/28.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/29.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/3.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/30.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/31.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/32.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/33.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/34.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/35.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/36.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/37.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/38.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/39.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/4.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/40.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/41.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/42.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/43.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/44.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/45.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/46.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/47.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/48.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/49.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/5.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/50.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/51.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/52.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/53.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/54.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/55.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/56.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/57.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/58.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/59.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/6.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/60.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/61.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/62.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/63.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/64.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/65.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/66.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/67.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/68.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/69.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/7.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/70.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/71.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/8.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/layui/images/face/9.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF32-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISPro-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISPro-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISX0213-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISX0213-UTF32-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISX0213-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISX0213-UTF32-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISX02132004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISX02132004-UTF32-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISX02132004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniJISX02132004-UTF32-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/V.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/compressed.tracemonkey-pldi-09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/compressed.tracemonkey-pldi-09.pdf -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/annotation-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/annotation-insert.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/annotation-newparagraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/annotation-noicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-next-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-next-rtl.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-next-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-next-rtl@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-next.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-next@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-previous-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-previous-rtl.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-previous-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-previous-rtl@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-previous.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-previous@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/findbarButton-previous@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/grab.cur -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/grabbing.cur -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/loading-icon.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/loading-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/loading-small.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/loading-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/loading-small@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-documentProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-documentProperties.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-documentProperties@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-documentProperties@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-firstPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-firstPage.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-firstPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-firstPage@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-handTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-handTool.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-handTool@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-handTool@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-lastPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-lastPage.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-lastPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-lastPage@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-rotateCcw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-rotateCcw.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-rotateCcw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-rotateCcw@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-rotateCw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-rotateCw.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-rotateCw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/secondaryToolbarButton-rotateCw@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/shadow.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/texture.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-bookmark.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-bookmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-bookmark@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-download.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-download@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-menuArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-menuArrows.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-menuArrows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-menuArrows@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-openFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-openFile.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-openFile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-openFile@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageDown-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageDown-rtl.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageDown-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageDown-rtl@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageDown.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageDown@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageUp-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageUp-rtl.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageUp-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageUp-rtl@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageUp.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageUp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-pageUp@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-presentationMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-presentationMode.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-presentationMode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-presentationMode@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-print.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-print@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-search.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-search@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-secondaryToolbarToggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-secondaryToolbarToggle-rtl.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-secondaryToolbarToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-secondaryToolbarToggle.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-secondaryToolbarToggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-secondaryToolbarToggle@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-sidebarToggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-sidebarToggle-rtl.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-sidebarToggle-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-sidebarToggle-rtl@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-sidebarToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-sidebarToggle.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-sidebarToggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-sidebarToggle@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewAttachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewAttachments.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewAttachments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewAttachments@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewOutline-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewOutline-rtl.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewOutline-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewOutline-rtl@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewOutline.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewOutline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewOutline@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewThumbnail.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewThumbnail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-viewThumbnail@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-zoomIn.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-zoomIn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-zoomIn@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-zoomOut.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-zoomOut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/pdf/web/images/toolbarButton-zoomOut@2x.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/treegrid/img/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/treegrid/img/collapse.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/treegrid/img/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/treegrid/img/expand.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/treegrid/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/treegrid/img/file.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/treegrid/img/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/treegrid/img/folder.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/treegrid/jquery.treegrid.bootstrap3.js: -------------------------------------------------------------------------------- 1 | $.extend($.fn.treegrid.defaults, { 2 | expanderExpandedClass: 'glyphicon glyphicon-chevron-down', 3 | expanderCollapsedClass: 'glyphicon glyphicon-chevron-right' 4 | }); 5 | -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/awesomeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/awesomeStyle/img/loading.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/metroStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/metroStyle/img/line_conn.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/metroStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/metroStyle/img/loading.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/metroStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/metroStyle/img/metro.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/metroStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/metroStyle/img/metro.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-html/src/main/webapp/static/plugins/ztree/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /portal-html/src/main/webapp/tip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 信息提示 7 | 8 | 9 | 10 | 11 |
12 |
信息提示
13 |
14 |

   正在开发中。。。

15 | 16 |
17 |
18 | 19 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/app/annotation/Login.java: -------------------------------------------------------------------------------- 1 | package com.king.app.annotation; 2 | 3 | import java.lang.annotation.Documented; 4 | import java.lang.annotation.ElementType; 5 | import java.lang.annotation.Retention; 6 | import java.lang.annotation.RetentionPolicy; 7 | import java.lang.annotation.Target; 8 | 9 | /** 10 | * app登录效验 11 | * @author King chen 12 | * @emai 396885563@qq.com 13 | * @date 2018年4月23日 14 | */ 15 | @Target(ElementType.METHOD) 16 | @Retention(RetentionPolicy.RUNTIME) 17 | @Documented 18 | public @interface Login { 19 | } 20 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/app/annotation/LoginUser.java: -------------------------------------------------------------------------------- 1 | package com.king.app.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | * @author King chen 11 | * @emai 396885563@qq.com 12 | * @date 2018年4月23日 13 | */ 14 | @Target(ElementType.PARAMETER) 15 | @Retention(RetentionPolicy.RUNTIME) 16 | public @interface LoginUser { 17 | 18 | } 19 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/app/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | package com.king.app.dao; 2 | 3 | import org.mapstruct.Mapper; 4 | 5 | import com.king.app.entity.AppUser; 6 | import com.king.dal.gen.dao.BaseDao; 7 | 8 | /** 9 | * 用户dao 10 | * @author King chen 11 | * @emai 396885563@qq.com 12 | * @date 2018年4月23日 13 | */ 14 | @Mapper 15 | public interface UserDao extends BaseDao { 16 | 17 | AppUser queryByMobile(String mobile); 18 | } 19 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/listener/ApplicationInitializedListener.java: -------------------------------------------------------------------------------- 1 | package com.king.listener; 2 | 3 | import javax.annotation.PostConstruct; 4 | 5 | import org.slf4j.Logger; 6 | import org.slf4j.LoggerFactory; 7 | import org.springframework.stereotype.Component; 8 | 9 | /** 10 | * spring 容器启动后加载@ 11 | * @author king chen 12 | * 13 | */ 14 | @Component 15 | public class ApplicationInitializedListener { 16 | Logger logger = LoggerFactory.getLogger(getClass()); 17 | @PostConstruct 18 | public void loadEnttyMapper(){ 19 | logger.info("spring容器启动完毕"); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/oauth2/OAuth2Token.java: -------------------------------------------------------------------------------- 1 | package com.king.oauth2; 2 | 3 | 4 | import org.apache.shiro.authc.AuthenticationToken; 5 | 6 | /** 7 | * token 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年1月11日 11 | */ 12 | public class OAuth2Token implements AuthenticationToken { 13 | 14 | private static final long serialVersionUID = -475327548398408650L; 15 | private String token; 16 | 17 | public OAuth2Token(String token){ 18 | this.token = token; 19 | } 20 | 21 | @Override 22 | public String getPrincipal() { 23 | return token; 24 | } 25 | 26 | @Override 27 | public Object getCredentials() { 28 | return token; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/rest/oss/OCRController.java: -------------------------------------------------------------------------------- 1 | package com.king.rest.oss; 2 | 3 | import org.springframework.web.bind.annotation.RestController; 4 | 5 | /** 6 | * OCR识别 7 | * @author King chen 8 | * @emai 396885563@qq.com 9 | * @date 2018年8月1日 10 | */ 11 | @RestController 12 | public class OCRController { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/utils/HttpContextUtils.java: -------------------------------------------------------------------------------- 1 | package com.king.utils; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | import javax.servlet.http.HttpServletResponse; 5 | 6 | import org.springframework.web.context.request.RequestContextHolder; 7 | import org.springframework.web.context.request.ServletRequestAttributes; 8 | import org.springframework.web.context.request.ServletWebRequest; 9 | 10 | 11 | public class HttpContextUtils { 12 | 13 | public static HttpServletRequest getHttpServletRequest() { 14 | return ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/utils/excel/ExcelReaderUtil.java: -------------------------------------------------------------------------------- 1 | package com.king.utils.excel; 2 | import org.apache.poi.openxml4j.exceptions.OpenXML4JException; 3 | import org.xml.sax.SAXException; 4 | 5 | import java.io.File; 6 | import java.io.IOException; 7 | 8 | /** 9 | * 加载Excel解析 10 | * @author King chen 11 | * @emai 396885563@qq.com 12 | * @date 2018年8月23日 13 | */ 14 | public class ExcelReaderUtil { 15 | public static void read2007Excel(int offset,IExcelRowReader rowReader, File file) throws 16 | OpenXML4JException, SAXException, IOException { 17 | Excel2007Reader excel2007Reader = new Excel2007Reader(); 18 | excel2007Reader.setRowReader(offset,rowReader); 19 | excel2007Reader.load(file); 20 | } 21 | 22 | } -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/utils/excel/IExcelRowReader.java: -------------------------------------------------------------------------------- 1 | package com.king.utils.excel; 2 | import java.util.List; 3 | 4 | /** 5 | * Excel读取处理接口 6 | * @author King chen 7 | * @emai 396885563@qq.com 8 | * @date 2018年8月23日 9 | */ 10 | public interface IExcelRowReader { 11 | void getRows(int sheetIndex, int curRow,Boolean end, List rowlist); 12 | } -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/utils/gen/aspect/ChooseGenDataSource.java: -------------------------------------------------------------------------------- 1 | package com.king.utils.gen.aspect; 2 | 3 | import org.slf4j.Logger; 4 | import org.slf4j.LoggerFactory; 5 | import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource; 6 | 7 | /** 8 | * 获取数据源 9 | * @author King chen 10 | * @emai 396885563@qq.com 11 | * @date 2018年4月8日 12 | */ 13 | public class ChooseGenDataSource extends AbstractRoutingDataSource { 14 | private Logger logger = LoggerFactory.getLogger(getClass()); 15 | // 获取数据源名称 16 | protected Object determineCurrentLookupKey() { 17 | logger.debug( "切换:"+HandleGenDataSource.getDataSource()); 18 | return HandleGenDataSource.getDataSource(); 19 | } 20 | 21 | 22 | } 23 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/utils/gen/aspect/HandleGenDataSource.java: -------------------------------------------------------------------------------- 1 | package com.king.utils.gen.aspect; 2 | 3 | /** 4 | * 数据源线程级别处理 5 | * @author King chen 6 | * @emai 396885563@qq.com 7 | * @date 2018年4月8日 8 | */ 9 | public class HandleGenDataSource { 10 | private static final ThreadLocal local_data = new ThreadLocal<>(); 11 | 12 | public static ThreadLocal getLocal() { 13 | return local_data; 14 | } 15 | public static void setDataSource(String dataSource) { 16 | local_data.set(dataSource); 17 | } 18 | public static String getDataSource() { 19 | return local_data.get(); 20 | } 21 | 22 | public static void clear() { 23 | local_data.remove(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/utils/gen/dao/SysGeneratorDao.java: -------------------------------------------------------------------------------- 1 | package com.king.utils.gen.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | 7 | /** 8 | * 代码生成器 9 | * @author King chen 10 | * @emai 396885563@qq.com 11 | * @date 2018年3月12日 12 | */ 13 | public interface SysGeneratorDao { 14 | 15 | List> queryList(Map map); 16 | 17 | int queryTotal(Map map); 18 | 19 | Map queryTable(String tableName); 20 | 21 | List> queryColumns(String tableName); 22 | } 23 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/utils/gen/service/SysGeneratorService.java: -------------------------------------------------------------------------------- 1 | package com.king.utils.gen.service; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.king.common.utils.Page; 7 | 8 | 9 | /** 10 | * 代码生成器 11 | * @author King chen 12 | * @emai 396885563@qq.com 13 | * @date 2018年3月12日 14 | */ 15 | public interface SysGeneratorService { 16 | 17 | Map queryTable(String dataSource,String tableName); 18 | 19 | List> queryColumns(String dataSource,String tableName); 20 | 21 | /** 22 | * 生成代码 23 | */ 24 | byte[] generatorCode(String dataSource,String[] tableNames); 25 | 26 | /** 27 | * 分页查询列表 28 | */ 29 | public Page getPage(String dataSource,Map map); 30 | } 31 | -------------------------------------------------------------------------------- /portal-web/src/main/java/com/king/utils/swagger/service/WordService.java: -------------------------------------------------------------------------------- 1 | package com.king.utils.swagger.service; 2 | 3 | 4 | import java.util.List; 5 | 6 | import com.king.utils.swagger.entity.Body; 7 | import com.king.utils.swagger.entity.Head; 8 | import com.king.utils.swagger.entity.Info; 9 | 10 | /** 11 | * @author King chen 12 | * @emai 396885563@qq.com 13 | * @date 2018年8月10日 14 | */ 15 | public interface WordService { 16 | List bodyList(); 17 | List headList(); 18 | Info getinfo(); 19 | } 20 | -------------------------------------------------------------------------------- /portal-web/src/main/resources/template/Dao.java.vm: -------------------------------------------------------------------------------- 1 | package ${package}.dao; 2 | 3 | import ${package}.dal.gen.model.${module}.${className}; 4 | import ${package}.dal.gen.dao.BaseDao; 5 | 6 | 7 | /** 8 | * ${comments} 9 | * 10 | * @author ${author} 11 | * @email ${email} 12 | * @date ${datetime} 13 | */ 14 | public interface ${className}Dao extends BaseDao<${className}> { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /portal-web/src/main/resources/template/Service.java.vm: -------------------------------------------------------------------------------- 1 | package ${package}.spi.${module}; 2 | 3 | import ${package}.dal.gen.model.${module}.${className}; 4 | import ${package}.dal.gen.service.BaseService; 5 | 6 | 7 | /** 8 | * ${comments} 9 | * 10 | * @author ${author} 11 | * @email ${email} 12 | * @date ${datetime} 13 | */ 14 | public interface ${className}Service extends BaseService<${className}>{ 15 | 16 | 17 | } 18 | -------------------------------------------------------------------------------- /portal-web/src/main/resources/template/ServiceImpl.java.vm: -------------------------------------------------------------------------------- 1 | package ${package}.service.spi; 2 | 3 | import org.springframework.stereotype.Service; 4 | import ${package}.dal.gen.service.BaseServiceImpl; 5 | import ${package}.dal.gen.model.${module}.${className}; 6 | import ${package}.api.${module}.${className}Service; 7 | 8 | 9 | 10 | @Service("${classname}Service") 11 | public class ${className}ServiceImpl extends BaseServiceImpl<${className}> implements ${className}Service { 12 | 13 | 14 | } 15 | -------------------------------------------------------------------------------- /portal-web/src/main/webapp/WEB-INF/lib/crypt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-web/src/main/webapp/WEB-INF/lib/crypt.jar -------------------------------------------------------------------------------- /portal-web/src/main/webapp/WEB-INF/lib/icepdf-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-web/src/main/webapp/WEB-INF/lib/icepdf-core.jar -------------------------------------------------------------------------------- /portal-web/src/main/webapp/WEB-INF/lib/icepdf-extra.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-web/src/main/webapp/WEB-INF/lib/icepdf-extra.jar -------------------------------------------------------------------------------- /portal-web/src/main/webapp/WEB-INF/lib/icepdf-pro-intl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-web/src/main/webapp/WEB-INF/lib/icepdf-pro-intl.jar -------------------------------------------------------------------------------- /portal-web/src/main/webapp/WEB-INF/lib/icepdf-pro.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-web/src/main/webapp/WEB-INF/lib/icepdf-pro.jar -------------------------------------------------------------------------------- /portal-web/src/main/webapp/WEB-INF/lib/icepdf-viewer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3zamn/kingMicro/3ba90b6fe3a6038b699996a8fb3fdb75a02dd484/portal-web/src/main/webapp/WEB-INF/lib/icepdf-viewer.jar -------------------------------------------------------------------------------- /portal-web/src/test/java/test/excel/ExcelHande.java: -------------------------------------------------------------------------------- 1 | package test.excel; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | public class ExcelHande { 7 | 8 | private List list = new ArrayList<>(); 9 | public List hande(T t){ 10 | list.add(t); 11 | 12 | return null; 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /portal-web/src/test/java/test/excel/ExcelReaderUtil.java: -------------------------------------------------------------------------------- 1 | package test.excel; 2 | import org.apache.poi.openxml4j.exceptions.OpenXML4JException; 3 | import org.xml.sax.SAXException; 4 | 5 | import java.io.File; 6 | import java.io.IOException; 7 | 8 | public class ExcelReaderUtil { 9 | public static void read2007Excel(IExcelRowReader rowReader, File file) throws 10 | OpenXML4JException, SAXException, IOException { 11 | Excel2007Reader excel2007Reader = new Excel2007Reader(); 12 | excel2007Reader.setRowReader(rowReader); 13 | excel2007Reader.load(file); 14 | } 15 | 16 | } -------------------------------------------------------------------------------- /portal-web/src/test/java/test/excel/IExcelRowReader.java: -------------------------------------------------------------------------------- 1 | package test.excel; 2 | import java.util.List; 3 | 4 | public interface IExcelRowReader { 5 | void getRows(int sheetIndex, int curRow, List rowlist); 6 | } -------------------------------------------------------------------------------- /portal-web/src/test/java/test/ocr/Sample.java: -------------------------------------------------------------------------------- 1 | package test.ocr; 2 | 3 | public class Sample { 4 | //设置APPID/AK/SK 5 | public static final String APP_ID = "11624594"; 6 | public static final String API_KEY = "09eDHwgoMbg5fpOsrf05vlG8"; 7 | public static final String SECRET_KEY = "Gy0unRTEHsfwAQjtw42jfyeCus17xWEb"; 8 | 9 | 10 | } 11 | -------------------------------------------------------------------------------- /portal-web/src/test/java/test/poi/ExcelRowReader.java: -------------------------------------------------------------------------------- 1 | package test.poi; 2 | 3 | import java.util.List; 4 | 5 | public class ExcelRowReader implements IExcelRowReader { 6 | 7 | @Override 8 | public void getRows(int sheetIndex, int curRow, List rowlist) { 9 | System.out.print(curRow+" "); 10 | for (int i = 0; i < rowlist.size(); i++) { 11 | System.out.print(rowlist.get(i)==""?"*":rowlist.get(i) + " "); 12 | } 13 | System.out.println(); 14 | } 15 | 16 | } -------------------------------------------------------------------------------- /portal-web/src/test/java/test/poi/IExcelRowReader.java: -------------------------------------------------------------------------------- 1 | package test.poi; 2 | 3 | import java.util.List; 4 | 5 | public interface IExcelRowReader { 6 | /** 7 | * 业务逻辑实现方法 8 | * 9 | * @param sheetIndex 10 | * @param curRow 11 | * @param rowlist 12 | */ 13 | void getRows(int sheetIndex, int curRow, List rowlist); 14 | } -------------------------------------------------------------------------------- /portal-web/src/test/java/test/xml/annotation/Column.java: -------------------------------------------------------------------------------- 1 | package test.xml.annotation; 2 | import java.lang.annotation.ElementType; 3 | import java.lang.annotation.Retention; 4 | import java.lang.annotation.RetentionPolicy; 5 | import java.lang.annotation.Target; 6 | /** 7 | * 定义需要解析的实体属性 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年8月16日 11 | */ 12 | @Retention(RetentionPolicy.RUNTIME) 13 | @Target(ElementType.FIELD) 14 | public @ interface Column { 15 | 16 | /** 17 | * 字段名 18 | */ 19 | public String name(); 20 | 21 | /** 22 | * true:值为空也生成、false相反 23 | */ 24 | public String required() default "1"; 25 | } 26 | -------------------------------------------------------------------------------- /portal-web/src/test/java/test/xml/annotation/Root.java: -------------------------------------------------------------------------------- 1 | package test.xml.annotation; 2 | import java.lang.annotation.ElementType; 3 | import java.lang.annotation.Retention; 4 | import java.lang.annotation.RetentionPolicy; 5 | import java.lang.annotation.Target; 6 | /** 7 | * 指定根节点 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年8月16日 11 | */ 12 | @Retention(RetentionPolicy.RUNTIME) 13 | @Target(ElementType.TYPE) 14 | public @ interface Root { 15 | /** 16 | * 指定根节点名称 17 | */ 18 | public String name(); 19 | } 20 | -------------------------------------------------------------------------------- /portal-web/src/test/java/test/xml/base/Range.java: -------------------------------------------------------------------------------- 1 | package test.xml.base; 2 | 3 | /** 4 | * 每次解析的范围 5 | * @author King chen 6 | * @emai 396885563@qq.com 7 | * @date 2018年8月16日 8 | */ 9 | public class Range { 10 | private int from =0; 11 | private int to =0; 12 | public int getFrom() { 13 | return from; 14 | } 15 | public void setFrom(int from) { 16 | this.from = from; 17 | } 18 | public int getTo() { 19 | return to; 20 | } 21 | public void setTo(int to) { 22 | this.to = to; 23 | } 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /portal-web/src/test/java/test/xml/handler/XmlHandler.java: -------------------------------------------------------------------------------- 1 | package test.xml.handler; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | /** 7 | * 解析完后续业务接口 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年8月16日 11 | */ 12 | public interface XmlHandler { 13 | 14 | public void hande(Map> reMap); 15 | 16 | } 17 | -------------------------------------------------------------------------------- /portal-web/src/test/java/test/xml/vo/CarEngine.java: -------------------------------------------------------------------------------- 1 | package test.xml.vo; 2 | 3 | import test.xml.annotation.Column; 4 | import test.xml.base.XmlBase; 5 | 6 | public class CarEngine extends XmlBase { 7 | 8 | 9 | @Column(name="core") 10 | private Integer core; 11 | @Column(name="type") 12 | private String type; 13 | public Integer getCore() { 14 | return core; 15 | } 16 | public void setCore(Integer core) { 17 | this.core = core; 18 | } 19 | public String getType() { 20 | return type; 21 | } 22 | public void setType(String type) { 23 | this.type = type; 24 | } 25 | 26 | 27 | 28 | 29 | } 30 | -------------------------------------------------------------------------------- /portal-web/src/test/java/test/xml/vo/Cell.java: -------------------------------------------------------------------------------- 1 | package test.xml.vo; 2 | 3 | public class Cell { 4 | 5 | public String c; 6 | public String is; 7 | public String t; 8 | public String getC() { 9 | return c; 10 | } 11 | public void setC(String c) { 12 | this.c = c; 13 | } 14 | public String getIs() { 15 | return is; 16 | } 17 | public void setIs(String is) { 18 | this.is = is; 19 | } 20 | public String getT() { 21 | return t; 22 | } 23 | public void setT(String t) { 24 | this.t = t; 25 | } 26 | 27 | 28 | } 29 | -------------------------------------------------------------------------------- /portal-web/src/test/java/test/xml/vo/Row.java: -------------------------------------------------------------------------------- 1 | package test.xml.vo; 2 | import java.util.List; 3 | 4 | 5 | import test.xml.base.XmlBase; 6 | 7 | 8 | 9 | public class Row extends XmlBase{ 10 | 11 | public List cell; 12 | 13 | public List getCell() { 14 | return cell; 15 | } 16 | 17 | public void setCell(List cell) { 18 | this.cell = cell; 19 | } 20 | 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/SmpServer.java: -------------------------------------------------------------------------------- 1 | package com.king; 2 | 3 | /** 4 | * 系统管理子系统 5 | * 用dubbo的main方法方式启动容器 6 | * @author King chen 7 | * @date 2017年12月15日 8 | */ 9 | public class SmpServer { 10 | public static void main(String[] args) throws Exception { 11 | com.alibaba.dubbo.container.Main.main(args); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/ScheduleJobDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | 4 | import java.util.Map; 5 | 6 | import com.king.dal.gen.dao.BaseDao; 7 | import com.king.dal.gen.model.smp.ScheduleJob; 8 | 9 | /** 10 | * 定时任务 11 | * @author King chen 12 | * @email 396885563@qq.com 13 | * @date 2017年12月29日 14 | */ 15 | public interface ScheduleJobDao extends BaseDao { 16 | 17 | /** 18 | * 批量更新状态 19 | */ 20 | int updateBatch(Map map); 21 | } 22 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/ScheduleJobLogDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import com.king.dal.gen.dao.BaseDao; 4 | import com.king.dal.gen.model.smp.ScheduleJobLog; 5 | 6 | /** 7 | * 定时任务日志 8 | * @author King chen 9 | * @email 396885563@qq.com 10 | * @date 2017年12月29日 11 | */ 12 | public interface ScheduleJobLogDao extends BaseDao { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/SysConfigDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | import com.king.dal.gen.dao.BaseDao; 7 | import com.king.dal.gen.model.smp.SysConfig; 8 | 9 | /** 10 | * 系统配置信息 11 | * @author King chen 12 | * @email 396885563@qq.com 13 | * @date 2017年12月29日 14 | */ 15 | public interface SysConfigDao extends BaseDao { 16 | 17 | /** 18 | * 根据key,查询value 19 | */ 20 | SysConfig queryByKey(String paramKey); 21 | 22 | /** 23 | * 根据key,更新value 24 | */ 25 | int updateValueByKey(@Param("key") String key, @Param("value") String value); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/SysDeptDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.king.dal.gen.dao.BaseDao; 6 | import com.king.dal.gen.model.smp.SysDept; 7 | 8 | /** 9 | * 部门管理 10 | * @author King chen 11 | * @email 396885563@qq.com 12 | * @date 2017年12月29日 13 | */ 14 | public interface SysDeptDao extends BaseDao { 15 | 16 | /** 17 | * 查询子部门ID列表 18 | * @param parentId 上级部门ID 19 | */ 20 | List queryDeptIdList(Object parentId); 21 | 22 | /** 23 | * 根据当前节点查询父节点 24 | * @param detpId 25 | * @return 26 | */ 27 | Long queryParentDeptId(Object deptId); 28 | } 29 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/SysDicDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.king.dal.gen.dao.BaseDao; 6 | import com.king.dal.gen.model.smp.SysDic; 7 | import com.king.dal.gen.model.smp.SysDicTerm; 8 | 9 | /** 10 | * 数据字典明细表 11 | * 12 | * @author king chen 13 | * @email 396885563@qq.com 14 | * @date 2018-05-08 17:26:32 15 | */ 16 | public interface SysDicDao extends BaseDao { 17 | 18 | /** 19 | * 根据字典编码查询字典项 20 | * @param code 21 | * @return 22 | */ 23 | List queryDicTerm(Object code); 24 | 25 | /** 26 | * 根据父节点查询 27 | * @param parentd 28 | * @return 29 | */ 30 | List queryParentList(Object parentId); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/SysLogDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | 4 | import com.king.dal.gen.dao.BaseDao; 5 | import com.king.dal.gen.model.smp.SysLog; 6 | 7 | /** 8 | * 系统日志 9 | * @author King chen 10 | * @email 396885563@qq.com 11 | * @date 2017年12月29日 12 | */ 13 | public interface SysLogDao extends BaseDao { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/SysRoleDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import com.king.dal.gen.dao.BaseDao; 4 | import com.king.dal.gen.model.smp.SysRole; 5 | 6 | /** 7 | * 角色管理 8 | * @author King chen 9 | * @email 396885563@qq.com 10 | * @date 2017年12月29日 11 | */ 12 | public interface SysRoleDao extends BaseDao { 13 | 14 | 15 | } 16 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/SysRoleDeptDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import java.util.List; 4 | 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | import com.king.dal.gen.dao.BaseDao; 8 | import com.king.dal.gen.model.smp.SysRoleDept; 9 | 10 | /** 11 | * 角色与部门对应关系 12 | * @author King chen 13 | * @email 396885563@qq.com 14 | * @date 2017年12月29日 15 | */ 16 | public interface SysRoleDeptDao extends BaseDao { 17 | 18 | /** 19 | * 根据角色ID,获取部门ID列表 20 | */ 21 | List queryDeptIdList(Object roleId); 22 | 23 | /** 24 | * 查询子部门ID列表 25 | * @param parentIds 上级部门ID 26 | */ 27 | List queryDeptIdLists(@Param("parentIds")List parentIds); 28 | } 29 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/dao/SysRoleMenuDao.java: -------------------------------------------------------------------------------- 1 | package com.king.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.king.dal.gen.dao.BaseDao; 6 | import com.king.dal.gen.model.smp.SysRoleMenu; 7 | 8 | /** 9 | * 角色与菜单对应关系 10 | * @author King chen 11 | * @email 396885563@qq.com 12 | * @date 2017年12月29日 13 | */ 14 | public interface SysRoleMenuDao extends BaseDao { 15 | 16 | /** 17 | * 根据角色ID,获取菜单ID列表 18 | */ 19 | List queryMenuIdList(Object roleId); 20 | 21 | /** 22 | * 根据角色ID,获取扩展参数列表 23 | */ 24 | List queryParamsList(Object roleId); 25 | } 26 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/listener/ApplicationInitializedListener.java: -------------------------------------------------------------------------------- 1 | package com.king.listener; 2 | 3 | import javax.annotation.PostConstruct; 4 | 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.stereotype.Component; 7 | 8 | import com.king.common.utils.entityMapper.GenEntityMapper; 9 | 10 | /** 11 | * spring 容器启动后加载解析表与实体的映射 12 | * 13 | * @author king chen 14 | * @emai 396885563@qq.com 15 | * @date 2018年1月11日 16 | */ 17 | @Component 18 | public class ApplicationInitializedListener { 19 | 20 | @Autowired 21 | private GenEntityMapper genEnttyMapper; 22 | 23 | @PostConstruct 24 | public void loadEnttyMapper() { 25 | // spring 启动后加载 26 | genEnttyMapper.generateEnttyMapper(); 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/services/spi/SysLogServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.king.services.spi; 2 | 3 | 4 | import org.springframework.stereotype.Service; 5 | 6 | import com.king.api.smp.SysLogService; 7 | import com.king.dal.gen.model.smp.SysLog; 8 | import com.king.dal.gen.service.BaseServiceImpl; 9 | 10 | 11 | 12 | @Service("sysLogService") 13 | public class SysLogServiceImpl extends BaseServiceImpl implements SysLogService { 14 | 15 | 16 | } 17 | -------------------------------------------------------------------------------- /smp/src/main/java/com/king/utils/Query.java: -------------------------------------------------------------------------------- 1 | package com.king.utils; 2 | 3 | import com.alibaba.com.caucho.hessian.io.JavaSerializer; 4 | 5 | /** 6 | * Hessian反序列化找不到此类会警告 7 | * 空类 8 | * @author King chen 9 | * @emai 396885563@qq.com 10 | * @date 2018年6月4日 11 | */ 12 | public class Query extends JavaSerializer{ 13 | 14 | public Query(Class cl) { 15 | super(cl, null); 16 | } 17 | 18 | } 19 | --------------------------------------------------------------------------------