├── .gitignore ├── BG.WORK简介.pdf ├── LICENSE.txt ├── README.EN.md ├── README.md ├── bgserver-account ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── account │ │ └── model │ │ ├── Account.kt │ │ ├── AccountApi.kt │ │ ├── AccountCustomerOrderInvoice.kt │ │ ├── AccountPayable.kt │ │ ├── AccountReceivable.kt │ │ └── AppName.kt │ └── resources │ └── ui │ ├── action │ └── account.xml │ ├── menu │ └── account.xml │ └── model │ └── account.xml ├── bgserver-admin ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── admin │ │ └── model │ │ ├── AppName.kt │ │ ├── PartnerMenuRuleApi.kt │ │ ├── PartnerRuleApi.kt │ │ └── PartnerViewRuleApi.kt │ └── resources │ └── ui │ ├── action │ └── admin.xml │ ├── menu │ └── admin.xml │ └── model │ └── admin.xml ├── bgserver-chat ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── chat │ │ ├── ChannelConsumer.kt │ │ ├── ChatChannel.kt │ │ ├── ChatEventBusConstant.kt │ │ ├── ModelClientChatDeviceSessionID.kt │ │ ├── ModelClientChatSession.kt │ │ ├── ModelClientHub.kt │ │ ├── ModelClientRedis.kt │ │ ├── Server.kt │ │ ├── billboard │ │ └── ChatGuidBillboard.kt │ │ ├── constant │ │ └── ChannelBroadcastType.kt │ │ ├── field │ │ └── PartnerJoinStatusField.kt │ │ ├── kafka │ │ └── PersistChatMessage.kt │ │ ├── message │ │ ├── MessageResponseType.kt │ │ └── MessageType.kt │ │ ├── model │ │ ├── AppName.kt │ │ ├── Chat.kt │ │ ├── ChatChannel.kt │ │ ├── ChatChannelMessage.kt │ │ ├── ChatModelJoinChannelRel.kt │ │ └── ChatPartner.kt │ │ └── verticle │ │ ├── HttpServerVerticle.kt │ │ ├── ModelClientHubVerticle.kt │ │ ├── PersistLogServerVerticle.kt │ │ ├── RedisReceiveServerVerticle.kt │ │ └── RedisSendServerVerticle.kt │ └── resources │ ├── msg │ ├── channel-join-model-op.json │ ├── channel-op.json │ ├── msg-response-type-0-for-update-msg-uuid.json │ ├── msg-response-type-1-for-response-receive-success.json │ ├── msg-response-type-2-for-response-receiver-confirm.json │ └── txt.json │ └── ui │ ├── action │ └── chat.xml │ ├── menu │ └── chat.xml │ └── model │ └── chat.xml ├── bgserver-core ├── build.gradle └── src │ ├── main │ ├── kotlin │ │ └── work │ │ │ └── bg │ │ │ └── server │ │ │ ├── core │ │ │ ├── CoreApplication.kt │ │ │ ├── ModelAccessRule.kt │ │ │ ├── ModelDataRespository.kt │ │ │ ├── PartnerContext.kt │ │ │ ├── ResetRequestFilter.kt │ │ │ ├── ResetRequestWrapper.kt │ │ │ ├── ResetResponseWrapper.kt │ │ │ ├── ResetServletInputStream.kt │ │ │ ├── SystemInfo.kt │ │ │ ├── acrule │ │ │ │ ├── ACUIFilter.kt │ │ │ │ ├── AccessControlRule.kt │ │ │ │ ├── ModelCreateAccessControlRule.kt │ │ │ │ ├── ModelCreateRecordFieldsValueCheckInStoreRule.kt │ │ │ │ ├── ModelCreateRecordFieldsValueCheckRule.kt │ │ │ │ ├── ModelCreateRecordFieldsValueFilterRule.kt │ │ │ │ ├── ModelCreateRecordFieldsValueInitializeRule.kt │ │ │ │ ├── ModelDeleteAccessControlRule.kt │ │ │ │ ├── ModelEditAccessControlRule.kt │ │ │ │ ├── ModelEditRecordFieldsValueCheckInStoreRule.kt │ │ │ │ ├── ModelEditRecordFieldsValueCheckRule.kt │ │ │ │ ├── ModelEditRecordFieldsValueFilterRule.kt │ │ │ │ ├── ModelReadAccessAttachCriterialRule.kt │ │ │ │ ├── ModelReadAccessControlRule.kt │ │ │ │ ├── ModelReadFieldFilterRule.kt │ │ │ │ ├── ModelReadIsolationRule.kt │ │ │ │ ├── ModelRuleCriteriaProcessor.kt │ │ │ │ ├── bean │ │ │ │ │ ├── ModelCUFieldsProcessProxyModelFieldBeanValue.kt │ │ │ │ │ ├── ModelCreateFieldsInStoreInspectorCheckBean.kt │ │ │ │ │ ├── ModelCreateFieldsInspectorCheckBean.kt │ │ │ │ │ ├── ModelCreateFieldsSetIsolationFieldsValueBean.kt │ │ │ │ │ ├── ModelCreatePartnerInnerRecordFieldsValueFilterBean.kt │ │ │ │ │ ├── ModelDeleteCorpIsolationBean.kt │ │ │ │ │ ├── ModelDeleteFieldsBelongToPartnerCheckBean.kt │ │ │ │ │ ├── ModelEditCorpIsolationBean.kt │ │ │ │ │ ├── ModelEditFieldsBelongToPartnerCheckBean.kt │ │ │ │ │ ├── ModelEditFieldsInStoreInspectorCheckBean.kt │ │ │ │ │ ├── ModelEditFieldsInspectorCheckBean.kt │ │ │ │ │ ├── ModelEditPartnerInnerRecordFieldsValueFilterBean.kt │ │ │ │ │ ├── ModelReadCorpIsolationBean.kt │ │ │ │ │ ├── ModelReadPartnerInnerFilterBean.kt │ │ │ │ │ ├── ModelReadPartnerIsolationBean.kt │ │ │ │ │ └── ModelRuleCriteriaProcessorBean.kt │ │ │ │ └── inspector │ │ │ │ │ ├── ModelFieldInspector.kt │ │ │ │ │ ├── ModelFieldMustCoexist.kt │ │ │ │ │ ├── ModelFieldNotNullOrEmpty.kt │ │ │ │ │ ├── ModelFieldRequired.kt │ │ │ │ │ └── ModelFieldUnique.kt │ │ │ ├── cache │ │ │ │ ├── CorpCache.kt │ │ │ │ ├── CorpPartnerRoleCache.kt │ │ │ │ ├── PartnerCache.kt │ │ │ │ ├── PartnerCacheKey.kt │ │ │ │ └── PartnerCacheRegistry.kt │ │ │ ├── constant │ │ │ │ ├── ServletRequestAttributeTag.kt │ │ │ │ └── SessionTag.kt │ │ │ ├── context │ │ │ │ ├── ContextCriteriaTokenizer.kt │ │ │ │ ├── ContextVariant.kt │ │ │ │ ├── ContextVariantInitializer.kt │ │ │ │ ├── ContextVariantTable.kt │ │ │ │ ├── CriteriaStatementUtil.kt │ │ │ │ ├── CriteriaValueType.kt │ │ │ │ ├── JsonClauseResolver.kt │ │ │ │ └── ModelExpressionContext.kt │ │ │ ├── controller │ │ │ │ ├── ModelController.kt │ │ │ │ └── StorageFileController.kt │ │ │ ├── model │ │ │ │ ├── AccessControlModel.kt │ │ │ │ ├── AppName.kt │ │ │ │ ├── BaseApp.kt │ │ │ │ ├── BaseCorp.kt │ │ │ │ ├── BaseCorpPartnerRel.kt │ │ │ │ ├── BaseModelLog.kt │ │ │ │ ├── BasePartner.kt │ │ │ │ ├── BasePartnerAppShortcut.kt │ │ │ │ ├── BasePartnerRole.kt │ │ │ │ ├── BasePartnerRoleAppMenuRule.kt │ │ │ │ ├── BasePartnerRoleModelRule.kt │ │ │ │ ├── BasePartnerRoleModelViewRule.kt │ │ │ │ ├── BasePartnerStorageEntityRel.kt │ │ │ │ ├── ContextModel.kt │ │ │ │ ├── FieldRule.kt │ │ │ │ ├── ModelRelationMatcher.kt │ │ │ │ ├── ModelViewData.kt │ │ │ │ ├── StorageEntity.kt │ │ │ │ ├── billboard │ │ │ │ │ ├── CurrCorpBillboard.kt │ │ │ │ │ ├── CurrPartnerBillboard.kt │ │ │ │ │ └── PartnerTagBillboard.kt │ │ │ │ └── field │ │ │ │ │ └── EventLogField.kt │ │ │ ├── spring │ │ │ │ └── boot │ │ │ │ │ ├── CoreApplicationRunListener.kt │ │ │ │ │ ├── annotation │ │ │ │ │ ├── ShouldLogin.kt │ │ │ │ │ └── ShouldLoginInterceptor.kt │ │ │ │ │ ├── autoconfigure │ │ │ │ │ └── GsonActionResultSerializerConfiguration.kt │ │ │ │ │ └── bean │ │ │ │ │ ├── JsonActionResultDeserializer.kt │ │ │ │ │ └── JsonActionResultSerializer.kt │ │ │ ├── storage │ │ │ │ ├── FileEntity.kt │ │ │ │ ├── FileStorage.kt │ │ │ │ ├── FileType.kt │ │ │ │ └── ImgeFileType.kt │ │ │ └── ui │ │ │ │ ├── MenuTree.kt │ │ │ │ ├── ModelView.kt │ │ │ │ ├── ModelViewFieldSource.kt │ │ │ │ ├── ModelViewFieldSourceCache.kt │ │ │ │ ├── ModelViewRefType.kt │ │ │ │ ├── UICache.kt │ │ │ │ ├── UIFile.kt │ │ │ │ ├── UISortFiles.kt │ │ │ │ └── ViewAction.kt │ │ │ ├── expression │ │ │ └── AtomRuleCriteriaScanner.kt │ │ │ ├── mail │ │ │ └── MailSender.kt │ │ │ ├── sms │ │ │ ├── SmsSender.kt │ │ │ └── SmsTimerType.kt │ │ │ └── util │ │ │ ├── GUID.kt │ │ │ ├── MD5.kt │ │ │ ├── MethodInvocation.kt │ │ │ ├── PropertyAssign.kt │ │ │ ├── SKUGenerator.kt │ │ │ ├── Time.kt │ │ │ └── TypeConvert.kt │ └── resources │ │ ├── META-INF │ │ └── spring.factories │ │ └── ui │ │ ├── action │ │ └── core.xml │ │ ├── menu │ │ └── core.xml │ │ └── model │ │ └── core.xml │ └── test │ └── kotlin │ └── work │ └── bg │ └── server │ ├── core │ └── mq │ │ └── SqlTest.kt │ └── util │ └── MD5Test.kt ├── bgserver-corp ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── corp │ │ └── model │ │ ├── AppName.kt │ │ ├── Department.kt │ │ ├── DepartmentCorp.kt │ │ ├── DepartmentPartner.kt │ │ └── DepartmentPartnerRel.kt │ └── resources │ └── ui │ ├── action │ └── corp.xml │ ├── menu │ └── corp.xml │ └── model │ └── corp.xml ├── bgserver-crm ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── crm │ │ ├── field │ │ └── ModelFullAddressField.kt │ │ └── model │ │ ├── AppName.kt │ │ ├── CrmApi.kt │ │ ├── CrmCustomerOpportunityOrderProductRel.kt │ │ ├── CrmPartner.kt │ │ ├── CrmPartnerCustomerRel.kt │ │ ├── CrmPartnerEventRel.kt │ │ ├── CrmPartnerLeadRel.kt │ │ ├── CrmProduct.kt │ │ ├── Customer.kt │ │ ├── CustomerContactAddress.kt │ │ ├── CustomerFollowStep.kt │ │ ├── CustomerFollowStepCustomerRel.kt │ │ ├── CustomerOpportunity.kt │ │ ├── CustomerOpportunityOrderQuotation.kt │ │ ├── CustomerOpportunityOrderQuotationTemplate.kt │ │ ├── CustomerOrder.kt │ │ ├── CustomerOrderInvoice.kt │ │ ├── CustomerOrderStep.kt │ │ ├── Event.kt │ │ ├── Lead.kt │ │ ├── LeadCustomerCommunicationHistory.kt │ │ └── LeadInteractionStatus.kt │ └── resources │ └── ui │ ├── action │ └── crm.xml │ ├── menu │ └── crm.xml │ └── model │ └── crm.xml ├── bgserver-freeswitch-callcenter └── build.gradle ├── bgserver-kafka ├── build.gradle └── src │ └── main │ └── kotlin │ └── work │ └── bg │ └── server │ └── kafka │ ├── ContainerFactoryConfigurer.kt │ └── SmsClient.kt ├── bgserver-mail ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── mail │ │ └── bean │ │ └── DefaultMailSender.kt │ └── resources │ └── ui │ ├── action │ └── mail.xml │ ├── menu │ └── mail.xml │ └── model │ └── mail.xml ├── bgserver-product ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── product │ │ ├── acrule │ │ └── bean │ │ │ ├── ModelCreateProductInnerRecordFieldsValueFilterBean.kt │ │ │ └── ModelEditProductInnerRecordFieldsValueFilterBean.kt │ │ └── model │ │ ├── AppName.kt │ │ ├── Product.kt │ │ ├── ProductAttribute.kt │ │ ├── ProductAttributeValue.kt │ │ ├── ProductAttributeValueMap.kt │ │ ├── ProductSKUPattern.kt │ │ └── ProductUOM.kt │ └── resources │ └── ui │ ├── action │ └── product.xml │ ├── menu │ └── product.xml │ └── model │ └── product.xml ├── bgserver-qiye-weixin └── build.gradle ├── bgserver-setting ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── setting │ │ └── model │ │ └── AppName.kt │ └── resources │ └── ui │ ├── action │ └── setting.xml │ ├── menu │ └── setting.xml │ └── model │ └── setting.xml ├── bgserver-sms ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── sms │ │ ├── MobileHelper.kt │ │ ├── bean │ │ ├── C8686SenderBean.kt │ │ ├── C8686SmsClient.kt │ │ └── DefaultSmsSender.kt │ │ ├── job │ │ └── SmsJob.kt │ │ ├── model │ │ ├── AppName.kt │ │ ├── Sms.kt │ │ ├── SmsPartner.kt │ │ ├── SmsReplyMessageHistory.kt │ │ ├── SmsSendHistory.kt │ │ ├── SmsSendJobLog.kt │ │ ├── SmsSetting.kt │ │ └── SmsTimerQueue.kt │ │ └── storage │ │ └── MobileFileType.kt │ └── resources │ └── ui │ ├── action │ └── sms.xml │ ├── menu │ └── sms.xml │ └── model │ └── sms.xml ├── bgserver-worktable ├── build.gradle └── src │ └── main │ ├── kotlin │ └── work │ │ └── bg │ │ └── server │ │ └── worktable │ │ └── model │ │ ├── AppName.kt │ │ └── Worktable.kt │ └── resources │ └── ui │ ├── action │ └── worktable.xml │ ├── menu │ └── worktable.xml │ └── model │ └── worktable.xml ├── dynamic-model-query ├── .gitignore ├── build.gradle └── src │ └── main │ └── kotlin │ └── dynamic │ └── model │ └── query │ ├── config │ ├── ActionType.kt │ ├── AppNamePackage.kt │ └── AppPackageManifest.kt │ ├── constant │ └── ModelReservedKey.kt │ ├── exception │ └── ModelErrorException.kt │ └── mq │ ├── AttachedField.kt │ ├── BinaryOperatorField.kt │ ├── CreateStatement.kt │ ├── DeleteStatement.kt │ ├── EnumField.kt │ ├── EnumFieldMeta.kt │ ├── FieldBase.kt │ ├── FieldCollection.kt │ ├── FieldConstant.kt │ ├── FieldForeignKey.kt │ ├── FieldIndex.kt │ ├── FieldPrimaryKey.kt │ ├── FieldType.kt │ ├── FieldValue.kt │ ├── FieldValueArray.kt │ ├── ForeignKeyAction.kt │ ├── FunctionField.kt │ ├── GroupBy.kt │ ├── Many2ManyField.kt │ ├── Many2OneField.kt │ ├── ModelCriteria.kt │ ├── ModelCriteriaRender.kt │ ├── ModelData.kt │ ├── ModelDataArray.kt │ ├── ModelDataObject.kt │ ├── ModelDataSharedObject.kt │ ├── ModelEnumField.kt │ ├── ModelExpression.kt │ ├── ModelExpressionVisitor.kt │ ├── ModelField.kt │ ├── ModelFieldConvert.kt │ ├── ModelMany2ManyField.kt │ ├── ModelMany2OneField.kt │ ├── ModelOne2ManyField.kt │ ├── ModelOne2OneField.kt │ ├── ModelStatusField.kt │ ├── ModelTableColumnAliasNameGenerator.kt │ ├── ModelTableColumnNameGenerator.kt │ ├── One2ManyField.kt │ ├── One2OneField.kt │ ├── OrderBy.kt │ ├── PagingField.kt │ ├── ProxyRelationModelField.kt │ ├── RefRelationField.kt │ ├── RefSingleton.kt │ ├── RefTargetField.kt │ ├── SelectStatement.kt │ ├── SqlUtil.kt │ ├── StatusField.kt │ ├── StatusFieldMeta.kt │ ├── Undefined.kt │ ├── UpdateStatement.kt │ ├── aggregation │ ├── AggExpression.kt │ ├── AvgExpression.kt │ ├── CountExpression.kt │ ├── MaxExpression.kt │ ├── MinExpression.kt │ └── SumExpression.kt │ ├── billboard │ ├── ConstantFieldBillboard.kt │ ├── FieldDefaultValueBillboard.kt │ ├── FieldValueDependentingRecordBillboard.kt │ ├── PrimitiveValueBillboard.kt │ └── TimestampBillboard.kt │ ├── condition │ ├── CheckValueExpression.kt │ ├── EqualExpression.kt │ ├── ExistsExpression.kt │ ├── GreaterEqualExpression.kt │ ├── GreaterExpression.kt │ ├── InExpression.kt │ ├── IsExpression.kt │ ├── IsNotExpression.kt │ ├── LessEqualExpression.kt │ ├── LessExpression.kt │ ├── LikeExpression.kt │ ├── NotEqualExpression.kt │ ├── NotExistsExpression.kt │ ├── NotInExpression.kt │ ├── NotLikeExpression.kt │ └── constant │ │ ├── BooleanExpression.kt │ │ └── StringExpression.kt │ ├── join │ ├── JoinModel.kt │ ├── LateralJoinModel.kt │ └── join.kt │ ├── logical │ ├── AndExpression.kt │ └── OrExpression.kt │ ├── model │ ├── AppModel.kt │ ├── ModelBase.kt │ └── ModelMetaData.kt │ ├── specialized │ ├── ConstGetRecordRefField.kt │ ├── ConstRelRegistriesField.kt │ ├── ConstSetRecordRefField.kt │ └── DummyField.kt │ └── sql.kt ├── dynamic-model-web ├── .gitignore ├── build.gradle └── src │ └── main │ └── kotlin │ └── dynamic │ └── model │ └── web │ ├── context │ └── ContextType.kt │ ├── errorcode │ ├── ErrorCode.kt │ └── ErrorCodeUtil.kt │ └── spring │ └── boot │ ├── annotation │ ├── Action.kt │ ├── Model.kt │ ├── ModelRegister.kt │ └── ModelScan.kt │ └── model │ ├── ActionMethod.kt │ ├── ActionResult.kt │ ├── AppModelWeb.kt │ ├── BuildModelStrategy.kt │ ├── DefaultBuildModelStrategy.kt │ ├── ModelAction.kt │ ├── ModelActionRegistry.kt │ ├── ModelGraph.kt │ ├── ModelLineGraph.kt │ ├── ModelLineGraphNode.kt │ ├── ModelParamDelegate.kt │ ├── ModelPathScan.kt │ ├── ModelTreeBuildModelStrategy.kt │ ├── ModelTreeGraph.kt │ ├── ModelTreeGraphNode.kt │ ├── ModelWebContext.kt │ └── ReadActionParam.kt ├── gradlew ├── gradlew.bat ├── hierarchy └── model.txt ├── private.ouyang ├── settings.gradle ├── src ├── main │ ├── kotlin │ │ └── work │ │ │ └── bg │ │ │ └── server │ │ │ ├── ServerApplication.kt │ │ │ └── controller │ │ │ ├── ApiController.kt │ │ │ └── HomeController.kt │ └── resources │ │ ├── application-init.properties │ │ ├── application-prod.properties │ │ ├── application.properties │ │ └── log │ │ └── logback-spring.xml └── test │ └── kotlin │ └── work │ └── bg │ └── server │ ├── ServerTest.kt │ ├── core │ └── mq │ │ └── SqlTest.kt │ └── util │ └── MD5Test.kt ├── start.sql └── static ├── image ├── ModelInherit.png ├── account.png ├── bg.work办公设计交流群二维码.png ├── bg.work开发交流群二维码.png ├── bg.work项目合作群二维码.png ├── corp.png ├── crm.png ├── product.png ├── qixin.png ├── sms.png ├── softscreen.png └── worktable.png ├── logo └── logo.svg └── xy ├── css ├── css │ ├── font-awesome.css │ └── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── login.css ├── semantic.min.css ├── semantic.min.js └── themes │ └── default │ └── assets │ ├── fonts │ ├── brand-icons.eot │ ├── brand-icons.svg │ ├── brand-icons.ttf │ ├── brand-icons.woff │ ├── brand-icons.woff2 │ ├── icons.eot │ ├── icons.otf │ ├── icons.svg │ ├── icons.ttf │ ├── icons.woff │ ├── icons.woff2 │ ├── outline-icons.eot │ ├── outline-icons.svg │ ├── outline-icons.ttf │ ├── outline-icons.woff │ └── outline-icons.woff2 │ └── images │ └── flags.png ├── images └── bk.jpg ├── index.html └── script └── jquery-3.1.1.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/.gitignore -------------------------------------------------------------------------------- /BG.WORK简介.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/BG.WORK简介.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/README.EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/README.md -------------------------------------------------------------------------------- /bgserver-account/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/build.gradle -------------------------------------------------------------------------------- /bgserver-account/src/main/kotlin/work/bg/server/account/model/Account.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/kotlin/work/bg/server/account/model/Account.kt -------------------------------------------------------------------------------- /bgserver-account/src/main/kotlin/work/bg/server/account/model/AccountApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/kotlin/work/bg/server/account/model/AccountApi.kt -------------------------------------------------------------------------------- /bgserver-account/src/main/kotlin/work/bg/server/account/model/AccountCustomerOrderInvoice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/kotlin/work/bg/server/account/model/AccountCustomerOrderInvoice.kt -------------------------------------------------------------------------------- /bgserver-account/src/main/kotlin/work/bg/server/account/model/AccountPayable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/kotlin/work/bg/server/account/model/AccountPayable.kt -------------------------------------------------------------------------------- /bgserver-account/src/main/kotlin/work/bg/server/account/model/AccountReceivable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/kotlin/work/bg/server/account/model/AccountReceivable.kt -------------------------------------------------------------------------------- /bgserver-account/src/main/kotlin/work/bg/server/account/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/kotlin/work/bg/server/account/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-account/src/main/resources/ui/action/account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/resources/ui/action/account.xml -------------------------------------------------------------------------------- /bgserver-account/src/main/resources/ui/menu/account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/resources/ui/menu/account.xml -------------------------------------------------------------------------------- /bgserver-account/src/main/resources/ui/model/account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-account/src/main/resources/ui/model/account.xml -------------------------------------------------------------------------------- /bgserver-admin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-admin/build.gradle -------------------------------------------------------------------------------- /bgserver-admin/src/main/kotlin/work/bg/server/admin/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-admin/src/main/kotlin/work/bg/server/admin/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-admin/src/main/kotlin/work/bg/server/admin/model/PartnerMenuRuleApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-admin/src/main/kotlin/work/bg/server/admin/model/PartnerMenuRuleApi.kt -------------------------------------------------------------------------------- /bgserver-admin/src/main/kotlin/work/bg/server/admin/model/PartnerRuleApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-admin/src/main/kotlin/work/bg/server/admin/model/PartnerRuleApi.kt -------------------------------------------------------------------------------- /bgserver-admin/src/main/kotlin/work/bg/server/admin/model/PartnerViewRuleApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-admin/src/main/kotlin/work/bg/server/admin/model/PartnerViewRuleApi.kt -------------------------------------------------------------------------------- /bgserver-admin/src/main/resources/ui/action/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-admin/src/main/resources/ui/action/admin.xml -------------------------------------------------------------------------------- /bgserver-admin/src/main/resources/ui/menu/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-admin/src/main/resources/ui/menu/admin.xml -------------------------------------------------------------------------------- /bgserver-admin/src/main/resources/ui/model/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-admin/src/main/resources/ui/model/admin.xml -------------------------------------------------------------------------------- /bgserver-chat/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/build.gradle -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/ChannelConsumer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/ChannelConsumer.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/ChatChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/ChatChannel.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/ChatEventBusConstant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/ChatEventBusConstant.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/ModelClientChatDeviceSessionID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/ModelClientChatDeviceSessionID.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/ModelClientChatSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/ModelClientChatSession.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/ModelClientHub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/ModelClientHub.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/ModelClientRedis.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/ModelClientRedis.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/Server.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/Server.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/billboard/ChatGuidBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/billboard/ChatGuidBillboard.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/constant/ChannelBroadcastType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/constant/ChannelBroadcastType.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/field/PartnerJoinStatusField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/field/PartnerJoinStatusField.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/kafka/PersistChatMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/kafka/PersistChatMessage.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/message/MessageResponseType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/message/MessageResponseType.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/message/MessageType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/message/MessageType.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/model/Chat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/model/Chat.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/model/ChatChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/model/ChatChannel.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/model/ChatChannelMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/model/ChatChannelMessage.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/model/ChatModelJoinChannelRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/model/ChatModelJoinChannelRel.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/model/ChatPartner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/model/ChatPartner.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/HttpServerVerticle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/HttpServerVerticle.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/ModelClientHubVerticle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/ModelClientHubVerticle.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/PersistLogServerVerticle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/PersistLogServerVerticle.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/RedisReceiveServerVerticle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/RedisReceiveServerVerticle.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/RedisSendServerVerticle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/kotlin/work/bg/server/chat/verticle/RedisSendServerVerticle.kt -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/msg/channel-join-model-op.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/msg/channel-join-model-op.json -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/msg/channel-op.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/msg/channel-op.json -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/msg/msg-response-type-0-for-update-msg-uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/msg/msg-response-type-0-for-update-msg-uuid.json -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/msg/msg-response-type-1-for-response-receive-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/msg/msg-response-type-1-for-response-receive-success.json -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/msg/msg-response-type-2-for-response-receiver-confirm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/msg/msg-response-type-2-for-response-receiver-confirm.json -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/msg/txt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/msg/txt.json -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/ui/action/chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/ui/action/chat.xml -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/ui/menu/chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/ui/menu/chat.xml -------------------------------------------------------------------------------- /bgserver-chat/src/main/resources/ui/model/chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-chat/src/main/resources/ui/model/chat.xml -------------------------------------------------------------------------------- /bgserver-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/build.gradle -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/CoreApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/CoreApplication.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ModelAccessRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ModelAccessRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ModelDataRespository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ModelDataRespository.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/PartnerContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/PartnerContext.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ResetRequestFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ResetRequestFilter.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ResetRequestWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ResetRequestWrapper.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ResetResponseWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ResetResponseWrapper.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ResetServletInputStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ResetServletInputStream.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/SystemInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/SystemInfo.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ACUIFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ACUIFilter.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/AccessControlRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/AccessControlRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateAccessControlRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateAccessControlRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateRecordFieldsValueCheckInStoreRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateRecordFieldsValueCheckInStoreRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateRecordFieldsValueCheckRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateRecordFieldsValueCheckRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateRecordFieldsValueFilterRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateRecordFieldsValueFilterRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateRecordFieldsValueInitializeRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelCreateRecordFieldsValueInitializeRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelDeleteAccessControlRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelDeleteAccessControlRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelEditAccessControlRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelEditAccessControlRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelEditRecordFieldsValueCheckInStoreRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelEditRecordFieldsValueCheckInStoreRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelEditRecordFieldsValueCheckRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelEditRecordFieldsValueCheckRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelEditRecordFieldsValueFilterRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelEditRecordFieldsValueFilterRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelReadAccessAttachCriterialRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelReadAccessAttachCriterialRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelReadAccessControlRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelReadAccessControlRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelReadFieldFilterRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelReadFieldFilterRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelReadIsolationRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelReadIsolationRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelRuleCriteriaProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/ModelRuleCriteriaProcessor.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCUFieldsProcessProxyModelFieldBeanValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCUFieldsProcessProxyModelFieldBeanValue.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCreateFieldsInStoreInspectorCheckBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCreateFieldsInStoreInspectorCheckBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCreateFieldsInspectorCheckBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCreateFieldsInspectorCheckBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCreateFieldsSetIsolationFieldsValueBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCreateFieldsSetIsolationFieldsValueBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCreatePartnerInnerRecordFieldsValueFilterBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelCreatePartnerInnerRecordFieldsValueFilterBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelDeleteCorpIsolationBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelDeleteCorpIsolationBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelDeleteFieldsBelongToPartnerCheckBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelDeleteFieldsBelongToPartnerCheckBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditCorpIsolationBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditCorpIsolationBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditFieldsBelongToPartnerCheckBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditFieldsBelongToPartnerCheckBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditFieldsInStoreInspectorCheckBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditFieldsInStoreInspectorCheckBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditFieldsInspectorCheckBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditFieldsInspectorCheckBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditPartnerInnerRecordFieldsValueFilterBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelEditPartnerInnerRecordFieldsValueFilterBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelReadCorpIsolationBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelReadCorpIsolationBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelReadPartnerInnerFilterBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelReadPartnerInnerFilterBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelReadPartnerIsolationBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelReadPartnerIsolationBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelRuleCriteriaProcessorBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/bean/ModelRuleCriteriaProcessorBean.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldInspector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldInspector.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldMustCoexist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldMustCoexist.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldNotNullOrEmpty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldNotNullOrEmpty.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldRequired.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldRequired.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldUnique.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/acrule/inspector/ModelFieldUnique.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/cache/CorpCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/cache/CorpCache.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/cache/CorpPartnerRoleCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/cache/CorpPartnerRoleCache.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/cache/PartnerCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/cache/PartnerCache.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/cache/PartnerCacheKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/cache/PartnerCacheKey.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/cache/PartnerCacheRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/cache/PartnerCacheRegistry.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/constant/ServletRequestAttributeTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/constant/ServletRequestAttributeTag.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/constant/SessionTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/constant/SessionTag.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/context/ContextCriteriaTokenizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/context/ContextCriteriaTokenizer.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/context/ContextVariant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/context/ContextVariant.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/context/ContextVariantInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/context/ContextVariantInitializer.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/context/ContextVariantTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/context/ContextVariantTable.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/context/CriteriaStatementUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/context/CriteriaStatementUtil.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/context/CriteriaValueType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/context/CriteriaValueType.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/context/JsonClauseResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/context/JsonClauseResolver.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/context/ModelExpressionContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/context/ModelExpressionContext.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/controller/ModelController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/controller/ModelController.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/controller/StorageFileController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/controller/StorageFileController.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/AccessControlModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/AccessControlModel.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BaseApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BaseApp.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BaseCorp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BaseCorp.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BaseCorpPartnerRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BaseCorpPartnerRel.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BaseModelLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BaseModelLog.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartner.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerAppShortcut.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerAppShortcut.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerRole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerRole.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerRoleAppMenuRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerRoleAppMenuRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerRoleModelRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerRoleModelRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerRoleModelViewRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerRoleModelViewRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerStorageEntityRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/BasePartnerStorageEntityRel.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/ContextModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/ContextModel.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/FieldRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/FieldRule.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/ModelRelationMatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/ModelRelationMatcher.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/ModelViewData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/ModelViewData.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/StorageEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/StorageEntity.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/billboard/CurrCorpBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/billboard/CurrCorpBillboard.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/billboard/CurrPartnerBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/billboard/CurrPartnerBillboard.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/billboard/PartnerTagBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/billboard/PartnerTagBillboard.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/model/field/EventLogField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/model/field/EventLogField.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/CoreApplicationRunListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/CoreApplicationRunListener.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/annotation/ShouldLogin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/annotation/ShouldLogin.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/annotation/ShouldLoginInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/annotation/ShouldLoginInterceptor.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/autoconfigure/GsonActionResultSerializerConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/autoconfigure/GsonActionResultSerializerConfiguration.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/bean/JsonActionResultDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/bean/JsonActionResultDeserializer.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/bean/JsonActionResultSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/spring/boot/bean/JsonActionResultSerializer.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/storage/FileEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/storage/FileEntity.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/storage/FileStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/storage/FileStorage.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/storage/FileType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/storage/FileType.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/storage/ImgeFileType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/storage/ImgeFileType.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/MenuTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/MenuTree.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/ModelView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/ModelView.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/ModelViewFieldSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/ModelViewFieldSource.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/ModelViewFieldSourceCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/ModelViewFieldSourceCache.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/ModelViewRefType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/ModelViewRefType.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/UICache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/UICache.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/UIFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/UIFile.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/UISortFiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/UISortFiles.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/core/ui/ViewAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/core/ui/ViewAction.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/expression/AtomRuleCriteriaScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/expression/AtomRuleCriteriaScanner.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/mail/MailSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/mail/MailSender.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/sms/SmsSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/sms/SmsSender.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/sms/SmsTimerType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/sms/SmsTimerType.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/util/GUID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/util/GUID.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/util/MD5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/util/MD5.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/util/MethodInvocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/util/MethodInvocation.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/util/PropertyAssign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/util/PropertyAssign.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/util/SKUGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/util/SKUGenerator.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/util/Time.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/util/Time.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/kotlin/work/bg/server/util/TypeConvert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/kotlin/work/bg/server/util/TypeConvert.kt -------------------------------------------------------------------------------- /bgserver-core/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /bgserver-core/src/main/resources/ui/action/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/resources/ui/action/core.xml -------------------------------------------------------------------------------- /bgserver-core/src/main/resources/ui/menu/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/resources/ui/menu/core.xml -------------------------------------------------------------------------------- /bgserver-core/src/main/resources/ui/model/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/main/resources/ui/model/core.xml -------------------------------------------------------------------------------- /bgserver-core/src/test/kotlin/work/bg/server/core/mq/SqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/test/kotlin/work/bg/server/core/mq/SqlTest.kt -------------------------------------------------------------------------------- /bgserver-core/src/test/kotlin/work/bg/server/util/MD5Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-core/src/test/kotlin/work/bg/server/util/MD5Test.kt -------------------------------------------------------------------------------- /bgserver-corp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/build.gradle -------------------------------------------------------------------------------- /bgserver-corp/src/main/kotlin/work/bg/server/corp/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/src/main/kotlin/work/bg/server/corp/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-corp/src/main/kotlin/work/bg/server/corp/model/Department.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/src/main/kotlin/work/bg/server/corp/model/Department.kt -------------------------------------------------------------------------------- /bgserver-corp/src/main/kotlin/work/bg/server/corp/model/DepartmentCorp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/src/main/kotlin/work/bg/server/corp/model/DepartmentCorp.kt -------------------------------------------------------------------------------- /bgserver-corp/src/main/kotlin/work/bg/server/corp/model/DepartmentPartner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/src/main/kotlin/work/bg/server/corp/model/DepartmentPartner.kt -------------------------------------------------------------------------------- /bgserver-corp/src/main/kotlin/work/bg/server/corp/model/DepartmentPartnerRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/src/main/kotlin/work/bg/server/corp/model/DepartmentPartnerRel.kt -------------------------------------------------------------------------------- /bgserver-corp/src/main/resources/ui/action/corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/src/main/resources/ui/action/corp.xml -------------------------------------------------------------------------------- /bgserver-corp/src/main/resources/ui/menu/corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/src/main/resources/ui/menu/corp.xml -------------------------------------------------------------------------------- /bgserver-corp/src/main/resources/ui/model/corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-corp/src/main/resources/ui/model/corp.xml -------------------------------------------------------------------------------- /bgserver-crm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/build.gradle -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/field/ModelFullAddressField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/field/ModelFullAddressField.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmApi.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmCustomerOpportunityOrderProductRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmCustomerOpportunityOrderProductRel.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmPartner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmPartner.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmPartnerCustomerRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmPartnerCustomerRel.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmPartnerEventRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmPartnerEventRel.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmPartnerLeadRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmPartnerLeadRel.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmProduct.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CrmProduct.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/Customer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/Customer.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerContactAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerContactAddress.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerFollowStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerFollowStep.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerFollowStepCustomerRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerFollowStepCustomerRel.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOpportunity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOpportunity.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOpportunityOrderQuotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOpportunityOrderQuotation.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOpportunityOrderQuotationTemplate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOpportunityOrderQuotationTemplate.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOrder.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOrderInvoice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOrderInvoice.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOrderStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/CustomerOrderStep.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/Event.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/Lead.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/Lead.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/LeadCustomerCommunicationHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/LeadCustomerCommunicationHistory.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/kotlin/work/bg/server/crm/model/LeadInteractionStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/kotlin/work/bg/server/crm/model/LeadInteractionStatus.kt -------------------------------------------------------------------------------- /bgserver-crm/src/main/resources/ui/action/crm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/resources/ui/action/crm.xml -------------------------------------------------------------------------------- /bgserver-crm/src/main/resources/ui/menu/crm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/resources/ui/menu/crm.xml -------------------------------------------------------------------------------- /bgserver-crm/src/main/resources/ui/model/crm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-crm/src/main/resources/ui/model/crm.xml -------------------------------------------------------------------------------- /bgserver-freeswitch-callcenter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-freeswitch-callcenter/build.gradle -------------------------------------------------------------------------------- /bgserver-kafka/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-kafka/build.gradle -------------------------------------------------------------------------------- /bgserver-kafka/src/main/kotlin/work/bg/server/kafka/ContainerFactoryConfigurer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-kafka/src/main/kotlin/work/bg/server/kafka/ContainerFactoryConfigurer.kt -------------------------------------------------------------------------------- /bgserver-kafka/src/main/kotlin/work/bg/server/kafka/SmsClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-kafka/src/main/kotlin/work/bg/server/kafka/SmsClient.kt -------------------------------------------------------------------------------- /bgserver-mail/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-mail/build.gradle -------------------------------------------------------------------------------- /bgserver-mail/src/main/kotlin/work/bg/server/mail/bean/DefaultMailSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-mail/src/main/kotlin/work/bg/server/mail/bean/DefaultMailSender.kt -------------------------------------------------------------------------------- /bgserver-mail/src/main/resources/ui/action/mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-mail/src/main/resources/ui/action/mail.xml -------------------------------------------------------------------------------- /bgserver-mail/src/main/resources/ui/menu/mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-mail/src/main/resources/ui/menu/mail.xml -------------------------------------------------------------------------------- /bgserver-mail/src/main/resources/ui/model/mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-mail/src/main/resources/ui/model/mail.xml -------------------------------------------------------------------------------- /bgserver-product/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/build.gradle -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/acrule/bean/ModelCreateProductInnerRecordFieldsValueFilterBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/acrule/bean/ModelCreateProductInnerRecordFieldsValueFilterBean.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/acrule/bean/ModelEditProductInnerRecordFieldsValueFilterBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/acrule/bean/ModelEditProductInnerRecordFieldsValueFilterBean.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/model/Product.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/model/Product.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductAttribute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductAttribute.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductAttributeValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductAttributeValue.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductAttributeValueMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductAttributeValueMap.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductSKUPattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductSKUPattern.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductUOM.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/kotlin/work/bg/server/product/model/ProductUOM.kt -------------------------------------------------------------------------------- /bgserver-product/src/main/resources/ui/action/product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/resources/ui/action/product.xml -------------------------------------------------------------------------------- /bgserver-product/src/main/resources/ui/menu/product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/resources/ui/menu/product.xml -------------------------------------------------------------------------------- /bgserver-product/src/main/resources/ui/model/product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-product/src/main/resources/ui/model/product.xml -------------------------------------------------------------------------------- /bgserver-qiye-weixin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-qiye-weixin/build.gradle -------------------------------------------------------------------------------- /bgserver-setting/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-setting/build.gradle -------------------------------------------------------------------------------- /bgserver-setting/src/main/kotlin/work/bg/server/setting/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-setting/src/main/kotlin/work/bg/server/setting/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-setting/src/main/resources/ui/action/setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-setting/src/main/resources/ui/action/setting.xml -------------------------------------------------------------------------------- /bgserver-setting/src/main/resources/ui/menu/setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-setting/src/main/resources/ui/menu/setting.xml -------------------------------------------------------------------------------- /bgserver-setting/src/main/resources/ui/model/setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-setting/src/main/resources/ui/model/setting.xml -------------------------------------------------------------------------------- /bgserver-sms/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/build.gradle -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/MobileHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/MobileHelper.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/bean/C8686SenderBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/bean/C8686SenderBean.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/bean/C8686SmsClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/bean/C8686SmsClient.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/bean/DefaultSmsSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/bean/DefaultSmsSender.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/job/SmsJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/job/SmsJob.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/model/Sms.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/model/Sms.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsPartner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsPartner.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsReplyMessageHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsReplyMessageHistory.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsSendHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsSendHistory.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsSendJobLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsSendJobLog.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsSetting.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsTimerQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/model/SmsTimerQueue.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/kotlin/work/bg/server/sms/storage/MobileFileType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/kotlin/work/bg/server/sms/storage/MobileFileType.kt -------------------------------------------------------------------------------- /bgserver-sms/src/main/resources/ui/action/sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/resources/ui/action/sms.xml -------------------------------------------------------------------------------- /bgserver-sms/src/main/resources/ui/menu/sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/resources/ui/menu/sms.xml -------------------------------------------------------------------------------- /bgserver-sms/src/main/resources/ui/model/sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-sms/src/main/resources/ui/model/sms.xml -------------------------------------------------------------------------------- /bgserver-worktable/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-worktable/build.gradle -------------------------------------------------------------------------------- /bgserver-worktable/src/main/kotlin/work/bg/server/worktable/model/AppName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-worktable/src/main/kotlin/work/bg/server/worktable/model/AppName.kt -------------------------------------------------------------------------------- /bgserver-worktable/src/main/kotlin/work/bg/server/worktable/model/Worktable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-worktable/src/main/kotlin/work/bg/server/worktable/model/Worktable.kt -------------------------------------------------------------------------------- /bgserver-worktable/src/main/resources/ui/action/worktable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-worktable/src/main/resources/ui/action/worktable.xml -------------------------------------------------------------------------------- /bgserver-worktable/src/main/resources/ui/menu/worktable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-worktable/src/main/resources/ui/menu/worktable.xml -------------------------------------------------------------------------------- /bgserver-worktable/src/main/resources/ui/model/worktable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/bgserver-worktable/src/main/resources/ui/model/worktable.xml -------------------------------------------------------------------------------- /dynamic-model-query/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/.gitignore -------------------------------------------------------------------------------- /dynamic-model-query/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/build.gradle -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/config/ActionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/config/ActionType.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/config/AppNamePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/config/AppNamePackage.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/config/AppPackageManifest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/config/AppPackageManifest.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/constant/ModelReservedKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/constant/ModelReservedKey.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/exception/ModelErrorException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/exception/ModelErrorException.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/AttachedField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/AttachedField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/BinaryOperatorField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/BinaryOperatorField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/CreateStatement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/CreateStatement.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/DeleteStatement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/DeleteStatement.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/EnumField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/EnumField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/EnumFieldMeta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/EnumFieldMeta.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldBase.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldCollection.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldConstant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldConstant.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldForeignKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldForeignKey.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldIndex.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldPrimaryKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldPrimaryKey.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldType.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldValue.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldValueArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FieldValueArray.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ForeignKeyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ForeignKeyAction.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FunctionField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/FunctionField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/GroupBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/GroupBy.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/Many2ManyField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/Many2ManyField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/Many2OneField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/Many2OneField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelCriteria.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelCriteria.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelCriteriaRender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelCriteriaRender.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelData.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelDataArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelDataArray.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelDataObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelDataObject.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelDataSharedObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelDataSharedObject.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelEnumField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelEnumField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelExpressionVisitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelExpressionVisitor.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelFieldConvert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelFieldConvert.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelMany2ManyField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelMany2ManyField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelMany2OneField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelMany2OneField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelOne2ManyField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelOne2ManyField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelOne2OneField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelOne2OneField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelStatusField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelStatusField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelTableColumnAliasNameGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelTableColumnAliasNameGenerator.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelTableColumnNameGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ModelTableColumnNameGenerator.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/One2ManyField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/One2ManyField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/One2OneField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/One2OneField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/OrderBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/OrderBy.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/PagingField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/PagingField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ProxyRelationModelField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/ProxyRelationModelField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/RefRelationField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/RefRelationField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/RefSingleton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/RefSingleton.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/RefTargetField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/RefTargetField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/SelectStatement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/SelectStatement.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/SqlUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/SqlUtil.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/StatusField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/StatusField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/StatusFieldMeta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/StatusFieldMeta.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/Undefined.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/Undefined.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/UpdateStatement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/UpdateStatement.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/AggExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/AggExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/AvgExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/AvgExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/CountExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/CountExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/MaxExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/MaxExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/MinExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/MinExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/SumExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/aggregation/SumExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/ConstantFieldBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/ConstantFieldBillboard.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/FieldDefaultValueBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/FieldDefaultValueBillboard.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/FieldValueDependentingRecordBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/FieldValueDependentingRecordBillboard.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/PrimitiveValueBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/PrimitiveValueBillboard.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/TimestampBillboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/billboard/TimestampBillboard.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/CheckValueExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/CheckValueExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/EqualExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/EqualExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/ExistsExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/ExistsExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/GreaterEqualExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/GreaterEqualExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/GreaterExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/GreaterExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/InExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/InExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/IsExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/IsExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/IsNotExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/IsNotExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/LessEqualExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/LessEqualExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/LessExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/LessExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/LikeExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/LikeExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/NotEqualExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/NotEqualExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/NotExistsExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/NotExistsExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/NotInExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/NotInExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/NotLikeExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/NotLikeExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/constant/BooleanExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/constant/BooleanExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/constant/StringExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/condition/constant/StringExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/join/JoinModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/join/JoinModel.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/join/LateralJoinModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/join/LateralJoinModel.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/join/join.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/join/join.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/logical/AndExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/logical/AndExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/logical/OrExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/logical/OrExpression.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/model/AppModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/model/AppModel.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/model/ModelBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/model/ModelBase.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/model/ModelMetaData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/model/ModelMetaData.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/specialized/ConstGetRecordRefField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/specialized/ConstGetRecordRefField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/specialized/ConstRelRegistriesField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/specialized/ConstRelRegistriesField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/specialized/ConstSetRecordRefField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/specialized/ConstSetRecordRefField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/specialized/DummyField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/specialized/DummyField.kt -------------------------------------------------------------------------------- /dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/sql.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-query/src/main/kotlin/dynamic/model/query/mq/sql.kt -------------------------------------------------------------------------------- /dynamic-model-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/.gitignore -------------------------------------------------------------------------------- /dynamic-model-web/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/build.gradle -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/context/ContextType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/context/ContextType.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/errorcode/ErrorCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/errorcode/ErrorCode.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/errorcode/ErrorCodeUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/errorcode/ErrorCodeUtil.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/annotation/Action.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/annotation/Action.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/annotation/Model.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/annotation/Model.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/annotation/ModelRegister.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/annotation/ModelRegister.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/annotation/ModelScan.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/annotation/ModelScan.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ActionMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ActionMethod.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ActionResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ActionResult.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/AppModelWeb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/AppModelWeb.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/BuildModelStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/BuildModelStrategy.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/DefaultBuildModelStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/DefaultBuildModelStrategy.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelAction.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelActionRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelActionRegistry.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelGraph.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelLineGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelLineGraph.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelLineGraphNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelLineGraphNode.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelParamDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelParamDelegate.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelPathScan.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelPathScan.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelTreeBuildModelStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelTreeBuildModelStrategy.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelTreeGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelTreeGraph.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelTreeGraphNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelTreeGraphNode.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelWebContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ModelWebContext.kt -------------------------------------------------------------------------------- /dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ReadActionParam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/dynamic-model-web/src/main/kotlin/dynamic/model/web/spring/boot/model/ReadActionParam.kt -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hierarchy/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/hierarchy/model.txt -------------------------------------------------------------------------------- /private.ouyang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/private.ouyang -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/kotlin/work/bg/server/ServerApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/main/kotlin/work/bg/server/ServerApplication.kt -------------------------------------------------------------------------------- /src/main/kotlin/work/bg/server/controller/ApiController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/main/kotlin/work/bg/server/controller/ApiController.kt -------------------------------------------------------------------------------- /src/main/kotlin/work/bg/server/controller/HomeController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/main/kotlin/work/bg/server/controller/HomeController.kt -------------------------------------------------------------------------------- /src/main/resources/application-init.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/main/resources/application-init.properties -------------------------------------------------------------------------------- /src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/log/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/main/resources/log/logback-spring.xml -------------------------------------------------------------------------------- /src/test/kotlin/work/bg/server/ServerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/test/kotlin/work/bg/server/ServerTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/work/bg/server/core/mq/SqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/test/kotlin/work/bg/server/core/mq/SqlTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/work/bg/server/util/MD5Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/src/test/kotlin/work/bg/server/util/MD5Test.kt -------------------------------------------------------------------------------- /start.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/start.sql -------------------------------------------------------------------------------- /static/image/ModelInherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/ModelInherit.png -------------------------------------------------------------------------------- /static/image/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/account.png -------------------------------------------------------------------------------- /static/image/bg.work办公设计交流群二维码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/bg.work办公设计交流群二维码.png -------------------------------------------------------------------------------- /static/image/bg.work开发交流群二维码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/bg.work开发交流群二维码.png -------------------------------------------------------------------------------- /static/image/bg.work项目合作群二维码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/bg.work项目合作群二维码.png -------------------------------------------------------------------------------- /static/image/corp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/corp.png -------------------------------------------------------------------------------- /static/image/crm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/crm.png -------------------------------------------------------------------------------- /static/image/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/product.png -------------------------------------------------------------------------------- /static/image/qixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/qixin.png -------------------------------------------------------------------------------- /static/image/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/sms.png -------------------------------------------------------------------------------- /static/image/softscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/softscreen.png -------------------------------------------------------------------------------- /static/image/worktable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/image/worktable.png -------------------------------------------------------------------------------- /static/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/logo/logo.svg -------------------------------------------------------------------------------- /static/xy/css/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/css/font-awesome.css -------------------------------------------------------------------------------- /static/xy/css/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/xy/css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/xy/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/xy/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/xy/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/xy/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/xy/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/xy/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/login.css -------------------------------------------------------------------------------- /static/xy/css/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/semantic.min.css -------------------------------------------------------------------------------- /static/xy/css/semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/semantic.min.js -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/brand-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/brand-icons.eot -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/brand-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/brand-icons.svg -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/brand-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/brand-icons.ttf -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/brand-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/brand-icons.woff -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/brand-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/brand-icons.woff2 -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/icons.eot -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/icons.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/icons.otf -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/icons.svg -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/outline-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/outline-icons.eot -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/outline-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/outline-icons.svg -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/outline-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/outline-icons.ttf -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/outline-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/outline-icons.woff -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/fonts/outline-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/fonts/outline-icons.woff2 -------------------------------------------------------------------------------- /static/xy/css/themes/default/assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/css/themes/default/assets/images/flags.png -------------------------------------------------------------------------------- /static/xy/images/bk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/images/bk.jpg -------------------------------------------------------------------------------- /static/xy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/index.html -------------------------------------------------------------------------------- /static/xy/script/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouliuying/bgserver/HEAD/static/xy/script/jquery-3.1.1.min.js --------------------------------------------------------------------------------