├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── merge.yml ├── .gitignore ├── .taskjob └── win64.yaml ├── .zd.conf ├── Build.md ├── Jenkinsfile ├── LICENSE.md ├── Makefile ├── README.md ├── Taskfile.yml ├── VERSION ├── client ├── .gitignore ├── README.md ├── forge.config.js ├── icon │ ├── favicon.icns │ ├── favicon.ico │ └── favicon.png ├── lang │ ├── en.json │ └── zh-cn.json ├── package.json ├── src │ ├── app │ │ ├── app.js │ │ ├── core │ │ │ ├── lang.js │ │ │ ├── ui.js │ │ │ └── zd.js │ │ ├── package.json │ │ └── utils │ │ │ ├── comm.js │ │ │ ├── config.js │ │ │ ├── consts.js │ │ │ ├── env.js │ │ │ ├── hot-update.js │ │ │ ├── lang.js │ │ │ ├── log.js │ │ │ ├── string.js │ │ │ └── text-map.js │ └── main.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.rules.js ├── cmd ├── command │ ├── action │ │ ├── generate.go │ │ └── parse.go │ └── main.go ├── launcher │ ├── main.go │ └── main.syso ├── server │ └── main.go └── test │ ├── command │ ├── cmd_data_list_test.go │ ├── cmd_data_view_test.go │ ├── cmd_gen_article_test.go │ ├── cmd_gen_demo1_test.go │ ├── cmd_gen_demo2_test.go │ ├── cmd_gen_demo3_test.go │ ├── cmd_gen_demo4_test.go │ ├── cmd_gen_demo5_test.go │ ├── cmd_gen_expr_test.go │ ├── cmd_gen_format_test.go │ ├── cmd_gen_function_test.go │ ├── cmd_gen_inherit_test.go │ ├── cmd_gen_output_test.go │ ├── cmd_gen_recursive_test.go │ ├── cmd_gen_refer_test.go │ ├── cmd_gen_simple_test.go │ ├── cmd_help_test.go │ ├── cmd_parse_table_test.go │ ├── cmd_res_buildin_test.go │ └── cmd_res_users_test.go │ ├── consts │ └── consts.go │ ├── gen │ └── generator.go │ ├── helper │ ├── comm.go │ └── excel.go │ └── others │ ├── func │ ├── comm │ │ ├── comm.go │ │ ├── consts.go │ │ ├── dao.go │ │ └── excel.go │ ├── export │ │ ├── export-animal_plant.go │ │ ├── export-areacode.go │ │ ├── export-chinese_family.go │ │ ├── export-chinese_given.go │ │ ├── export-chronology.go │ │ ├── export-city.go │ │ ├── export-color.go │ │ ├── export-company.go │ │ ├── export-country.go │ │ ├── export-earthly_branches.go │ │ ├── export-english_family.go │ │ ├── export-english_given.go │ │ ├── export-five_elements.go │ │ ├── export-food.go │ │ ├── export-fruit.go │ │ ├── export-heavenly_stems.go │ │ ├── export-idiom.go │ │ ├── export-joke.go │ │ ├── export-occupation.go │ │ ├── export-planet.go │ │ ├── export-poetry_ancient.go │ │ ├── export-season.go │ │ ├── export-song.go │ │ ├── export-words.go │ │ └── export-xiehouyu.go │ ├── import │ │ ├── advert.go │ │ ├── animal-and-plant.go │ │ ├── animal.go │ │ ├── bank.go │ │ ├── car-brand.go │ │ ├── car-component.go │ │ ├── city.go │ │ ├── color.go │ │ ├── constellations.go │ │ ├── country.go │ │ ├── dict.go │ │ ├── dynasty.go │ │ ├── eight-diagram.go │ │ ├── food.go │ │ ├── fruit.go │ │ ├── idiom-simple.go │ │ ├── idiom.go │ │ ├── joke.go │ │ ├── medicine.go │ │ ├── name-cnfamily.go │ │ ├── name-cngiven.go │ │ ├── name-enfamily.go │ │ ├── name-engiven.go │ │ ├── pc-file-ext.go │ │ ├── pc-os.go │ │ ├── phone-model.go │ │ ├── place.go │ │ ├── poetry-ancient.go │ │ ├── song.go │ │ ├── telephone-city.go │ │ ├── telephone-country.go │ │ ├── text.go │ │ ├── words.go │ │ ├── xiehouyu.go │ │ └── zodiac.go │ ├── model │ │ └── model.go │ ├── proto │ │ ├── defaults │ │ │ ├── defaults.go │ │ │ ├── sample.go │ │ │ └── setter.go │ │ ├── dist │ │ │ ├── person.json │ │ │ ├── person.pb.go │ │ │ └── person.yaml │ │ ├── person.proto │ │ ├── setup.txt │ │ ├── tagger │ │ │ └── tagger.proto │ │ └── test.go │ └── thread │ │ └── test.go │ └── unit │ ├── mod_test.go │ ├── parse_table │ ├── by_field_name.sql │ ├── by_field_type.sql │ ├── by_records.sql │ ├── msparse_test.go │ └── parse_test.go │ ├── pinyin_test.go │ ├── server_test.go │ └── test.go ├── data ├── animal_plant │ └── v1.xlsx ├── areacode │ └── v1.xlsx ├── chronology │ └── v1.xlsx ├── city │ └── v1.xlsx ├── color │ └── v1.xlsx ├── company │ └── v1.xlsx ├── country │ └── v1.xlsx ├── earthly_branches │ └── v1.xlsx ├── five_elements │ └── v1.xlsx ├── food │ └── v1.xlsx ├── fruit │ └── v1.xlsx ├── heavenly_stems │ └── v1.xlsx ├── idiom │ └── v1.xlsx ├── joke │ └── v1.xlsx ├── name │ ├── cn.family.v2.xlsx │ ├── cn.given.v2.xlsx │ ├── en.family.v2.xlsx │ └── en.given.v2.xlsx ├── occupation │ └── v1.xlsx ├── planet │ └── v1.xlsx ├── poetry_ancient │ └── v1.xlsx ├── season │ └── v1.xlsx ├── song │ └── v1.xlsx ├── words │ └── v1 │ │ ├── 互联网黑话.xlsx │ │ ├── 介词.xlsx │ │ ├── 代词.xlsx │ │ ├── 副词.xlsx │ │ ├── 动词.xlsx │ │ ├── 助词.xlsx │ │ ├── 名词.xlsx │ │ ├── 形容词.xlsx │ │ ├── 形容词做谓语.xlsx │ │ ├── 数词.xlsx │ │ ├── 连词.xlsx │ │ └── 量词.xlsx └── xiehouyu │ └── v1.xlsx ├── demo ├── 01_range.yaml ├── 02_fix.yaml ├── 04_rand.yaml ├── 05_loop.yaml ├── 06_from_file.yaml ├── 07_nest.yaml ├── 08_format.yaml ├── 09_length.yaml ├── 10_brace.yaml ├── 12_function.yaml ├── 12_function2.yaml ├── 12_function3.yaml ├── 13_value.yaml ├── 14_from_config.yaml ├── 15_from_range.yaml ├── 16_from_instance.yaml ├── 17_from_results.yaml ├── 18_from_excel.yaml ├── 19_multi_from.yaml ├── 20_children_recursive.yaml ├── 22_datetime.yaml ├── 23_article.yaml ├── 24_person_info.yaml ├── 25_json_nested.yaml ├── 26_json_join_children.yaml ├── config.yaml ├── default.yaml ├── mock │ ├── input │ │ ├── my-openapi.json │ │ ├── my-other-openapi.json │ │ ├── postman.json │ │ ├── swagger.yaml │ │ └── test.yaml │ ├── mock.yaml │ ├── products.yaml │ └── sample │ │ ├── example.png │ │ └── examples.png ├── number.yaml ├── tables.sql ├── test │ ├── nested-range.yaml │ ├── nested-range1.yaml │ ├── nested-range2.yaml │ ├── nested-res.yaml │ ├── res.yaml │ └── res │ │ ├── num.txt │ │ ├── res.yaml │ │ ├── sub │ │ └── res.yaml │ │ └── user.txt └── user.txt ├── docker-compose.yml ├── go.mod ├── go.sum ├── internal ├── command │ ├── config │ │ └── db.go │ ├── init.go │ └── utils.go ├── pkg │ ├── config │ │ └── config.go │ ├── const │ │ ├── const.go │ │ └── enum.go │ ├── ctrl │ │ ├── field.go │ │ └── main.go │ ├── domain │ │ ├── comm.go │ │ └── def.go │ ├── helper │ │ ├── column-generate.go │ │ ├── column-vaildator.go │ │ ├── column.go │ │ ├── comm.go │ │ ├── creditcard.go │ │ ├── format.go │ │ ├── idcard.go │ │ ├── list.go │ │ ├── mac.go │ │ ├── md5.go │ │ ├── rand.go │ │ ├── samples.go │ │ ├── set.go │ │ ├── timestamp.go │ │ ├── token.go │ │ ├── ulid.go │ │ ├── uuid.go │ │ ├── value.go │ │ └── view.go │ ├── model │ │ ├── config.go │ │ ├── index.go │ │ ├── mock.go │ │ ├── output.go │ │ ├── request.go │ │ └── result.go │ └── service │ │ ├── article.go │ │ ├── combine.go │ │ ├── decode.go │ │ ├── def.go │ │ ├── excel.go │ │ ├── expression.go │ │ ├── field.go │ │ ├── file.go │ │ ├── fix.go │ │ ├── format.go │ │ ├── from-sql-ms.go │ │ ├── from-sql.go │ │ ├── from-table-ms.go │ │ ├── from-table.go │ │ ├── list.go │ │ ├── loop.go │ │ ├── main.go │ │ ├── mock.go │ │ ├── output-comm.go │ │ ├── output-excel.go │ │ ├── output-json.go │ │ ├── output-print.go │ │ ├── output-sql.go │ │ ├── output-text.go │ │ ├── output-xml.go │ │ ├── param.go │ │ ├── placeholder.go │ │ ├── protobuf.go │ │ ├── random.go │ │ ├── range.go │ │ ├── res-config.go │ │ ├── res-excel.go │ │ ├── res-intances.go │ │ ├── res-ranges.go │ │ ├── res-yaml.go │ │ ├── res.go │ │ ├── text.go │ │ └── value.go └── server │ ├── config │ ├── config.go │ └── db.go │ ├── controller │ ├── admin.go │ ├── base.go │ ├── comm.go │ ├── data.go │ ├── def.go │ └── mock.go │ ├── core │ ├── middleware │ │ ├── crs.go │ │ └── initcheck.go │ ├── module │ │ └── index.go │ └── web │ │ ├── index.go │ │ └── router.go │ ├── index.go │ ├── index │ ├── admin.go │ ├── comm.go │ ├── data.go │ ├── def.go │ └── mock.go │ ├── model │ ├── base.go │ ├── models.go │ ├── zd-config.go │ ├── zd-def.go │ ├── zd-excel.go │ ├── zd-field.go │ ├── zd-instances-item.go │ ├── zd-instances.go │ ├── zd-ranges-item.go │ ├── zd-ranges.go │ ├── zd-refer.go │ ├── zd-section.go │ └── zd-text.go │ ├── repo │ ├── config.go │ ├── def.go │ ├── excel.go │ ├── field.go │ ├── instances.go │ ├── mock.go │ ├── ranges.go │ ├── refer.go │ ├── section.go │ └── text.go │ ├── server.go │ ├── service │ ├── common.go │ ├── config.go │ ├── data.go │ ├── def.go │ ├── excel.go │ ├── field.go │ ├── instances.go │ ├── instancesItem.go │ ├── mock.go │ ├── preview.go │ ├── ranges.go │ ├── rangesItem.go │ ├── refer.go │ ├── res.go │ ├── section.go │ ├── sync.go │ └── text.go │ └── utils │ ├── common.go │ ├── const │ └── const.go │ ├── cron.go │ ├── download.go │ ├── gen.go │ └── request.go ├── pkg └── utils │ ├── common │ ├── flag.go │ └── utils.go │ ├── date │ └── date.go │ ├── display │ └── screen.go │ ├── file │ ├── download.go │ └── file.go │ ├── http │ └── http.go │ ├── i118 │ └── i118.go │ ├── log │ └── print.go │ ├── numb │ └── numb.go │ ├── shell │ └── shell.go │ ├── stdin │ └── stdin.go │ ├── string │ ├── match.go │ ├── string.go │ └── uuid.go │ └── vari │ └── var.go ├── res ├── en │ ├── messages.json │ ├── sample.yaml │ └── usage.txt └── zh │ ├── messages.json │ ├── sample.yaml │ └── usage.txt ├── resData.go ├── runtime ├── php │ └── php7 │ │ ├── php.exe │ │ └── php7ts.dll └── protobuf │ ├── bin │ ├── linux │ │ └── protoc │ ├── mac │ │ └── protoc │ ├── win32 │ │ └── protoc.exe │ └── win64 │ │ └── protoc.exe │ ├── convert.php │ ├── person.proto │ ├── setup.txt │ └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ └── google │ └── protobuf │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── GPBMetadata │ └── Google │ │ └── Protobuf │ │ ├── Any.php │ │ ├── Api.php │ │ ├── Duration.php │ │ ├── FieldMask.php │ │ ├── GPBEmpty.php │ │ ├── Internal │ │ └── Descriptor.php │ │ ├── SourceContext.php │ │ ├── Struct.php │ │ ├── Timestamp.php │ │ ├── Type.php │ │ └── Wrappers.php │ ├── Google │ └── Protobuf │ │ ├── Any.php │ │ ├── Api.php │ │ ├── BoolValue.php │ │ ├── BytesValue.php │ │ ├── Descriptor.php │ │ ├── DescriptorPool.php │ │ ├── DoubleValue.php │ │ ├── Duration.php │ │ ├── Enum.php │ │ ├── EnumDescriptor.php │ │ ├── EnumValue.php │ │ ├── EnumValueDescriptor.php │ │ ├── Field.php │ │ ├── Field │ │ ├── Cardinality.php │ │ └── Kind.php │ │ ├── FieldDescriptor.php │ │ ├── FieldMask.php │ │ ├── Field_Cardinality.php │ │ ├── Field_Kind.php │ │ ├── FloatValue.php │ │ ├── GPBEmpty.php │ │ ├── Int32Value.php │ │ ├── Int64Value.php │ │ ├── Internal │ │ ├── AnyBase.php │ │ ├── CodedInputStream.php │ │ ├── CodedOutputStream.php │ │ ├── Descriptor.php │ │ ├── DescriptorPool.php │ │ ├── DescriptorProto.php │ │ ├── DescriptorProto │ │ │ ├── ExtensionRange.php │ │ │ └── ReservedRange.php │ │ ├── DescriptorProto_ExtensionRange.php │ │ ├── DescriptorProto_ReservedRange.php │ │ ├── EnumBuilderContext.php │ │ ├── EnumDescriptor.php │ │ ├── EnumDescriptorProto.php │ │ ├── EnumDescriptorProto │ │ │ └── EnumReservedRange.php │ │ ├── EnumDescriptorProto_EnumReservedRange.php │ │ ├── EnumOptions.php │ │ ├── EnumValueDescriptorProto.php │ │ ├── EnumValueOptions.php │ │ ├── ExtensionRangeOptions.php │ │ ├── FieldDescriptor.php │ │ ├── FieldDescriptorProto.php │ │ ├── FieldDescriptorProto │ │ │ ├── Label.php │ │ │ └── Type.php │ │ ├── FieldDescriptorProto_Label.php │ │ ├── FieldDescriptorProto_Type.php │ │ ├── FieldOptions.php │ │ ├── FieldOptions │ │ │ ├── CType.php │ │ │ └── JSType.php │ │ ├── FieldOptions_CType.php │ │ ├── FieldOptions_JSType.php │ │ ├── FileDescriptor.php │ │ ├── FileDescriptorProto.php │ │ ├── FileDescriptorSet.php │ │ ├── FileOptions.php │ │ ├── FileOptions │ │ │ └── OptimizeMode.php │ │ ├── FileOptions_OptimizeMode.php │ │ ├── GPBDecodeException.php │ │ ├── GPBJsonWire.php │ │ ├── GPBLabel.php │ │ ├── GPBType.php │ │ ├── GPBUtil.php │ │ ├── GPBWire.php │ │ ├── GPBWireType.php │ │ ├── GeneratedCodeInfo.php │ │ ├── GeneratedCodeInfo │ │ │ └── Annotation.php │ │ ├── GeneratedCodeInfo_Annotation.php │ │ ├── GetPublicDescriptorTrait.php │ │ ├── HasPublicDescriptorTrait.php │ │ ├── MapEntry.php │ │ ├── MapField.php │ │ ├── MapFieldIter.php │ │ ├── Message.php │ │ ├── MessageBuilderContext.php │ │ ├── MessageOptions.php │ │ ├── MethodDescriptorProto.php │ │ ├── MethodOptions.php │ │ ├── MethodOptions │ │ │ └── IdempotencyLevel.php │ │ ├── MethodOptions_IdempotencyLevel.php │ │ ├── OneofDescriptor.php │ │ ├── OneofDescriptorProto.php │ │ ├── OneofField.php │ │ ├── OneofOptions.php │ │ ├── RawInputStream.php │ │ ├── RepeatedField.php │ │ ├── RepeatedFieldIter.php │ │ ├── ServiceDescriptorProto.php │ │ ├── ServiceOptions.php │ │ ├── SourceCodeInfo.php │ │ ├── SourceCodeInfo │ │ │ └── Location.php │ │ ├── SourceCodeInfo_Location.php │ │ ├── TimestampBase.php │ │ ├── UninterpretedOption.php │ │ ├── UninterpretedOption │ │ │ └── NamePart.php │ │ └── UninterpretedOption_NamePart.php │ │ ├── ListValue.php │ │ ├── Method.php │ │ ├── Mixin.php │ │ ├── NullValue.php │ │ ├── OneofDescriptor.php │ │ ├── Option.php │ │ ├── SourceContext.php │ │ ├── StringValue.php │ │ ├── Struct.php │ │ ├── Syntax.php │ │ ├── Timestamp.php │ │ ├── Type.php │ │ ├── UInt32Value.php │ │ ├── UInt64Value.php │ │ └── Value.php │ └── phpdoc.dist.xml ├── sonar-project.properties ├── test ├── tmp │ ├── 1.yaml │ └── keys.yaml └── unittest │ ├── article.txt │ ├── article.yaml │ ├── cmd.yaml │ ├── cmd2.yaml │ ├── number.yaml │ ├── person.proto │ ├── res-buildin.yaml │ ├── res-users.yaml │ ├── result.yaml │ ├── tables.sql │ └── user.txt ├── tmp └── cache │ └── .data.db ├── ui ├── .gitignore ├── babel.config.js ├── package.json ├── public │ ├── favicon.ico │ ├── favicon.png │ ├── index.html │ └── logo.png ├── src │ ├── App.vue │ ├── api │ │ ├── manage.js │ │ ├── mock.js │ │ ├── refer.js │ │ ├── section.js │ │ └── utils.js │ ├── assets │ │ ├── lang │ │ │ ├── en-US.js │ │ │ └── zh-CN.js │ │ └── logo.png │ ├── components │ │ ├── Design.vue │ │ ├── DesignModal.vue │ │ ├── FieldInfo.vue │ │ ├── FieldRange.vue │ │ ├── FieldRefer.vue │ │ ├── InstancesItem.vue │ │ ├── RangesItem.vue │ │ ├── SelectLang │ │ │ ├── index.jsx │ │ │ └── index.less │ │ └── index.js │ ├── config │ │ ├── bootstrap.js │ │ ├── config.js │ │ └── settings.js │ ├── layout │ │ ├── BlankLayout.vue │ │ ├── ColLayout.vue │ │ ├── Footer.vue │ │ ├── Header.vue │ │ ├── MainLayout.less │ │ ├── MainLayout.vue │ │ ├── Navbar.vue │ │ ├── Update.vue │ │ └── Zui.less │ ├── locales │ │ ├── index.js │ │ └── lang │ │ │ ├── en-US.js │ │ │ └── zh-CN.js │ ├── main.js │ ├── router │ │ └── index.js │ ├── store │ │ ├── getters.js │ │ ├── i18nMixin.js │ │ ├── index.js │ │ ├── mockMixin.js │ │ ├── modules │ │ │ ├── app.js │ │ │ └── mock.js │ │ └── mutation-types.js │ ├── utils │ │ ├── axios.js │ │ ├── bus.js │ │ ├── common.js │ │ ├── const.js │ │ ├── dom.js │ │ ├── localCache.js │ │ ├── request.js │ │ ├── utils.js │ │ └── vari.js │ └── views │ │ ├── data │ │ ├── buildin │ │ │ ├── Layout.vue │ │ │ ├── config │ │ │ │ ├── Edit.vue │ │ │ │ └── List.vue │ │ │ ├── excel │ │ │ │ ├── Edit.vue │ │ │ │ └── List.vue │ │ │ ├── instances │ │ │ │ ├── Edit.vue │ │ │ │ └── List.vue │ │ │ ├── ranges │ │ │ │ ├── Edit.vue │ │ │ │ └── List.vue │ │ │ └── text │ │ │ │ ├── Edit.vue │ │ │ │ └── List.vue │ │ └── mine │ │ │ ├── Edit.vue │ │ │ ├── List.vue │ │ │ └── Preview.vue │ │ └── mock │ │ ├── Index.vue │ │ ├── List.vue │ │ ├── Preview.vue │ │ └── components │ │ ├── Edit.vue │ │ └── Yaml.vue └── vue.config.js ├── users ├── test.yaml └── test │ └── number │ └── v1.yaml ├── win64.yaml ├── xdoc ├── bak │ ├── company-all.xlsx │ └── words │ │ └── v1 │ │ ├── 互联网黑话.xlsx │ │ ├── 介词词库.xlsx │ │ ├── 代词词库.xlsx │ │ ├── 副词词库.xlsx │ │ ├── 动词词库.xlsx │ │ ├── 助词词库.xlsx │ │ ├── 名词词库.xlsx │ │ ├── 形容词做谓语.xlsx │ │ ├── 形容词词库.xlsx │ │ ├── 数词词库.xlsx │ │ ├── 连词词库.xlsx │ │ └── 量词词库.xlsx ├── clear-data.txt ├── favicon.ico ├── favicon.png ├── import-data.txt ├── main.manifest ├── openapi.yaml ├── perfomance-test.txt ├── steup.txt ├── swagger.json ├── test.json ├── test.yaml └── zendata.svg └── yaml ├── animal_plant └── v1.yaml ├── areacode └── v1.yaml ├── article └── chinese │ └── slang │ ├── 01.yaml │ ├── sample.txt │ └── sample.yaml ├── card └── v1.yaml ├── chronology └── v1.yaml ├── city └── v1.yaml ├── color └── v1.yaml ├── company └── v1.yaml ├── country └── v1.yaml ├── domain ├── domain.v1.yaml ├── esp.v1.yaml └── postfix.v1.yaml ├── earthly_branches └── v1.yaml ├── email └── v1.yaml ├── five_elements └── v1.yaml ├── food └── v1.yaml ├── fruit └── v1.yaml ├── heavenly_stems └── v1.yaml ├── idiom └── v1.yaml ├── ip ├── v1.yaml └── v2.yaml ├── joke └── v1.yaml ├── log ├── agent.txt ├── apache.access.v1.yaml └── uri.txt ├── name ├── cnaccount.v1.yaml ├── cnreal.v1.yaml ├── enaccount.v1.yaml ├── enreal.v1.yaml ├── letters.v1.yaml └── numbers.v1.yaml ├── occupation └── v1.yaml ├── phone ├── v1.yaml └── zone.txt ├── planet └── v1.yaml ├── poetry_ancient └── v1.yaml ├── season └── v1.yaml ├── song └── v1.yaml ├── time ├── date.v1.yaml ├── monthday.v1.yaml └── time.v1.yaml ├── ulid └── v1.yaml ├── uuid ├── prefix.yaml ├── v1.yaml └── v2.yaml ├── xiehouyu └── v1.yaml └── zentao ├── insts-of-insts.yaml ├── ip └── private.yaml └── number └── v1.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/.github/workflows/merge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/.gitignore -------------------------------------------------------------------------------- /.taskjob/win64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/.taskjob/win64.yaml -------------------------------------------------------------------------------- /.zd.conf: -------------------------------------------------------------------------------- 1 | Version = 3.2.0 2 | Language = zh 3 | 4 | -------------------------------------------------------------------------------- /Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/Build.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.2.0 2 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/README.md -------------------------------------------------------------------------------- /client/forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/forge.config.js -------------------------------------------------------------------------------- /client/icon/favicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/icon/favicon.icns -------------------------------------------------------------------------------- /client/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/icon/favicon.ico -------------------------------------------------------------------------------- /client/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/icon/favicon.png -------------------------------------------------------------------------------- /client/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/lang/en.json -------------------------------------------------------------------------------- /client/lang/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/lang/zh-cn.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/app.js -------------------------------------------------------------------------------- /client/src/app/core/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/core/lang.js -------------------------------------------------------------------------------- /client/src/app/core/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/core/ui.js -------------------------------------------------------------------------------- /client/src/app/core/zd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/core/zd.js -------------------------------------------------------------------------------- /client/src/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/package.json -------------------------------------------------------------------------------- /client/src/app/utils/comm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/comm.js -------------------------------------------------------------------------------- /client/src/app/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/config.js -------------------------------------------------------------------------------- /client/src/app/utils/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/consts.js -------------------------------------------------------------------------------- /client/src/app/utils/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/env.js -------------------------------------------------------------------------------- /client/src/app/utils/hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/hot-update.js -------------------------------------------------------------------------------- /client/src/app/utils/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/lang.js -------------------------------------------------------------------------------- /client/src/app/utils/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/log.js -------------------------------------------------------------------------------- /client/src/app/utils/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/string.js -------------------------------------------------------------------------------- /client/src/app/utils/text-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/app/utils/text-map.js -------------------------------------------------------------------------------- /client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/src/main.js -------------------------------------------------------------------------------- /client/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/webpack.main.config.js -------------------------------------------------------------------------------- /client/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/webpack.renderer.config.js -------------------------------------------------------------------------------- /client/webpack.rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/client/webpack.rules.js -------------------------------------------------------------------------------- /cmd/command/action/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/command/action/generate.go -------------------------------------------------------------------------------- /cmd/command/action/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/command/action/parse.go -------------------------------------------------------------------------------- /cmd/command/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/command/main.go -------------------------------------------------------------------------------- /cmd/launcher/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/launcher/main.go -------------------------------------------------------------------------------- /cmd/launcher/main.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/launcher/main.syso -------------------------------------------------------------------------------- /cmd/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/server/main.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_data_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_data_list_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_data_view_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_data_view_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_article_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_article_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_demo1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_demo1_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_demo2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_demo2_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_demo3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_demo3_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_demo4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_demo4_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_demo5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_demo5_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_expr_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_format_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_function_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_inherit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_inherit_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_output_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_output_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_recursive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_recursive_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_refer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_refer_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_gen_simple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_gen_simple_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_help_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_parse_table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_parse_table_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_res_buildin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_res_buildin_test.go -------------------------------------------------------------------------------- /cmd/test/command/cmd_res_users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/command/cmd_res_users_test.go -------------------------------------------------------------------------------- /cmd/test/consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/consts/consts.go -------------------------------------------------------------------------------- /cmd/test/gen/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/gen/generator.go -------------------------------------------------------------------------------- /cmd/test/helper/comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/helper/comm.go -------------------------------------------------------------------------------- /cmd/test/helper/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/helper/excel.go -------------------------------------------------------------------------------- /cmd/test/others/func/comm/comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/comm/comm.go -------------------------------------------------------------------------------- /cmd/test/others/func/comm/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/comm/consts.go -------------------------------------------------------------------------------- /cmd/test/others/func/comm/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/comm/dao.go -------------------------------------------------------------------------------- /cmd/test/others/func/comm/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/comm/excel.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-animal_plant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-animal_plant.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-areacode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-areacode.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-chinese_family.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-chinese_family.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-chinese_given.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-chinese_given.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-chronology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-chronology.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-city.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-city.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-color.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-company.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-company.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-country.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-country.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-earthly_branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-earthly_branches.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-english_family.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-english_family.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-english_given.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-english_given.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-five_elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-five_elements.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-food.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-food.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-fruit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-fruit.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-heavenly_stems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-heavenly_stems.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-idiom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-idiom.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-joke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-joke.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-occupation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-occupation.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-planet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-planet.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-poetry_ancient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-poetry_ancient.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-season.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-season.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-song.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-song.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-words.go -------------------------------------------------------------------------------- /cmd/test/others/func/export/export-xiehouyu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/export/export-xiehouyu.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/advert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/advert.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/animal-and-plant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/animal-and-plant.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/animal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/animal.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/bank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/bank.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/car-brand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/car-brand.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/car-component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/car-component.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/city.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/city.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/color.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/constellations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/constellations.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/country.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/country.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/dict.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/dynasty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/dynasty.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/eight-diagram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/eight-diagram.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/food.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/food.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/fruit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/fruit.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/idiom-simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/idiom-simple.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/idiom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/idiom.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/joke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/joke.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/medicine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/medicine.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/name-cnfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/name-cnfamily.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/name-cngiven.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/name-cngiven.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/name-enfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/name-enfamily.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/name-engiven.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/name-engiven.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/pc-file-ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/pc-file-ext.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/pc-os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/pc-os.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/phone-model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/phone-model.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/place.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/place.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/poetry-ancient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/poetry-ancient.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/song.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/song.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/telephone-city.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/telephone-city.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/telephone-country.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/telephone-country.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/text.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/words.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/xiehouyu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/xiehouyu.go -------------------------------------------------------------------------------- /cmd/test/others/func/import/zodiac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/import/zodiac.go -------------------------------------------------------------------------------- /cmd/test/others/func/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/model/model.go -------------------------------------------------------------------------------- /cmd/test/others/func/proto/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/defaults/defaults.go -------------------------------------------------------------------------------- /cmd/test/others/func/proto/defaults/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/defaults/sample.go -------------------------------------------------------------------------------- /cmd/test/others/func/proto/defaults/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/defaults/setter.go -------------------------------------------------------------------------------- /cmd/test/others/func/proto/dist/person.json: -------------------------------------------------------------------------------- 1 | {"address":{"child":{}}} -------------------------------------------------------------------------------- /cmd/test/others/func/proto/dist/person.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/dist/person.pb.go -------------------------------------------------------------------------------- /cmd/test/others/func/proto/dist/person.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/dist/person.yaml -------------------------------------------------------------------------------- /cmd/test/others/func/proto/person.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/person.proto -------------------------------------------------------------------------------- /cmd/test/others/func/proto/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/setup.txt -------------------------------------------------------------------------------- /cmd/test/others/func/proto/tagger/tagger.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/tagger/tagger.proto -------------------------------------------------------------------------------- /cmd/test/others/func/proto/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/proto/test.go -------------------------------------------------------------------------------- /cmd/test/others/func/thread/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/func/thread/test.go -------------------------------------------------------------------------------- /cmd/test/others/unit/mod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/mod_test.go -------------------------------------------------------------------------------- /cmd/test/others/unit/parse_table/by_field_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/parse_table/by_field_name.sql -------------------------------------------------------------------------------- /cmd/test/others/unit/parse_table/by_field_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/parse_table/by_field_type.sql -------------------------------------------------------------------------------- /cmd/test/others/unit/parse_table/by_records.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/parse_table/by_records.sql -------------------------------------------------------------------------------- /cmd/test/others/unit/parse_table/msparse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/parse_table/msparse_test.go -------------------------------------------------------------------------------- /cmd/test/others/unit/parse_table/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/parse_table/parse_test.go -------------------------------------------------------------------------------- /cmd/test/others/unit/pinyin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/pinyin_test.go -------------------------------------------------------------------------------- /cmd/test/others/unit/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/server_test.go -------------------------------------------------------------------------------- /cmd/test/others/unit/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/cmd/test/others/unit/test.go -------------------------------------------------------------------------------- /data/animal_plant/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/animal_plant/v1.xlsx -------------------------------------------------------------------------------- /data/areacode/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/areacode/v1.xlsx -------------------------------------------------------------------------------- /data/chronology/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/chronology/v1.xlsx -------------------------------------------------------------------------------- /data/city/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/city/v1.xlsx -------------------------------------------------------------------------------- /data/color/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/color/v1.xlsx -------------------------------------------------------------------------------- /data/company/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/company/v1.xlsx -------------------------------------------------------------------------------- /data/country/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/country/v1.xlsx -------------------------------------------------------------------------------- /data/earthly_branches/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/earthly_branches/v1.xlsx -------------------------------------------------------------------------------- /data/five_elements/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/five_elements/v1.xlsx -------------------------------------------------------------------------------- /data/food/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/food/v1.xlsx -------------------------------------------------------------------------------- /data/fruit/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/fruit/v1.xlsx -------------------------------------------------------------------------------- /data/heavenly_stems/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/heavenly_stems/v1.xlsx -------------------------------------------------------------------------------- /data/idiom/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/idiom/v1.xlsx -------------------------------------------------------------------------------- /data/joke/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/joke/v1.xlsx -------------------------------------------------------------------------------- /data/name/cn.family.v2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/name/cn.family.v2.xlsx -------------------------------------------------------------------------------- /data/name/cn.given.v2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/name/cn.given.v2.xlsx -------------------------------------------------------------------------------- /data/name/en.family.v2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/name/en.family.v2.xlsx -------------------------------------------------------------------------------- /data/name/en.given.v2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/name/en.given.v2.xlsx -------------------------------------------------------------------------------- /data/occupation/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/occupation/v1.xlsx -------------------------------------------------------------------------------- /data/planet/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/planet/v1.xlsx -------------------------------------------------------------------------------- /data/poetry_ancient/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/poetry_ancient/v1.xlsx -------------------------------------------------------------------------------- /data/season/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/season/v1.xlsx -------------------------------------------------------------------------------- /data/song/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/song/v1.xlsx -------------------------------------------------------------------------------- /data/words/v1/互联网黑话.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/互联网黑话.xlsx -------------------------------------------------------------------------------- /data/words/v1/介词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/介词.xlsx -------------------------------------------------------------------------------- /data/words/v1/代词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/代词.xlsx -------------------------------------------------------------------------------- /data/words/v1/副词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/副词.xlsx -------------------------------------------------------------------------------- /data/words/v1/动词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/动词.xlsx -------------------------------------------------------------------------------- /data/words/v1/助词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/助词.xlsx -------------------------------------------------------------------------------- /data/words/v1/名词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/名词.xlsx -------------------------------------------------------------------------------- /data/words/v1/形容词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/形容词.xlsx -------------------------------------------------------------------------------- /data/words/v1/形容词做谓语.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/形容词做谓语.xlsx -------------------------------------------------------------------------------- /data/words/v1/数词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/数词.xlsx -------------------------------------------------------------------------------- /data/words/v1/连词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/连词.xlsx -------------------------------------------------------------------------------- /data/words/v1/量词.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/words/v1/量词.xlsx -------------------------------------------------------------------------------- /data/xiehouyu/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/data/xiehouyu/v1.xlsx -------------------------------------------------------------------------------- /demo/01_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/01_range.yaml -------------------------------------------------------------------------------- /demo/02_fix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/02_fix.yaml -------------------------------------------------------------------------------- /demo/04_rand.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/04_rand.yaml -------------------------------------------------------------------------------- /demo/05_loop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/05_loop.yaml -------------------------------------------------------------------------------- /demo/06_from_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/06_from_file.yaml -------------------------------------------------------------------------------- /demo/07_nest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/07_nest.yaml -------------------------------------------------------------------------------- /demo/08_format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/08_format.yaml -------------------------------------------------------------------------------- /demo/09_length.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/09_length.yaml -------------------------------------------------------------------------------- /demo/10_brace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/10_brace.yaml -------------------------------------------------------------------------------- /demo/12_function.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/12_function.yaml -------------------------------------------------------------------------------- /demo/12_function2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/12_function2.yaml -------------------------------------------------------------------------------- /demo/12_function3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/12_function3.yaml -------------------------------------------------------------------------------- /demo/13_value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/13_value.yaml -------------------------------------------------------------------------------- /demo/14_from_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/14_from_config.yaml -------------------------------------------------------------------------------- /demo/15_from_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/15_from_range.yaml -------------------------------------------------------------------------------- /demo/16_from_instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/16_from_instance.yaml -------------------------------------------------------------------------------- /demo/17_from_results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/17_from_results.yaml -------------------------------------------------------------------------------- /demo/18_from_excel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/18_from_excel.yaml -------------------------------------------------------------------------------- /demo/19_multi_from.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/19_multi_from.yaml -------------------------------------------------------------------------------- /demo/20_children_recursive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/20_children_recursive.yaml -------------------------------------------------------------------------------- /demo/22_datetime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/22_datetime.yaml -------------------------------------------------------------------------------- /demo/23_article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/23_article.yaml -------------------------------------------------------------------------------- /demo/24_person_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/24_person_info.yaml -------------------------------------------------------------------------------- /demo/25_json_nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/25_json_nested.yaml -------------------------------------------------------------------------------- /demo/26_json_join_children.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/26_json_join_children.yaml -------------------------------------------------------------------------------- /demo/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/config.yaml -------------------------------------------------------------------------------- /demo/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/default.yaml -------------------------------------------------------------------------------- /demo/mock/input/my-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/input/my-openapi.json -------------------------------------------------------------------------------- /demo/mock/input/my-other-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/input/my-other-openapi.json -------------------------------------------------------------------------------- /demo/mock/input/postman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/input/postman.json -------------------------------------------------------------------------------- /demo/mock/input/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/input/swagger.yaml -------------------------------------------------------------------------------- /demo/mock/input/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/input/test.yaml -------------------------------------------------------------------------------- /demo/mock/mock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/mock.yaml -------------------------------------------------------------------------------- /demo/mock/products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/products.yaml -------------------------------------------------------------------------------- /demo/mock/sample/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/sample/example.png -------------------------------------------------------------------------------- /demo/mock/sample/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/mock/sample/examples.png -------------------------------------------------------------------------------- /demo/number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/number.yaml -------------------------------------------------------------------------------- /demo/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/tables.sql -------------------------------------------------------------------------------- /demo/test/nested-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/test/nested-range.yaml -------------------------------------------------------------------------------- /demo/test/nested-range1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/test/nested-range1.yaml -------------------------------------------------------------------------------- /demo/test/nested-range2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/test/nested-range2.yaml -------------------------------------------------------------------------------- /demo/test/nested-res.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/test/nested-res.yaml -------------------------------------------------------------------------------- /demo/test/res.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/test/res.yaml -------------------------------------------------------------------------------- /demo/test/res/num.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 -------------------------------------------------------------------------------- /demo/test/res/res.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/test/res/res.yaml -------------------------------------------------------------------------------- /demo/test/res/sub/res.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/test/res/sub/res.yaml -------------------------------------------------------------------------------- /demo/test/res/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/test/res/user.txt -------------------------------------------------------------------------------- /demo/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/demo/user.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/go.sum -------------------------------------------------------------------------------- /internal/command/config/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/command/config/db.go -------------------------------------------------------------------------------- /internal/command/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/command/init.go -------------------------------------------------------------------------------- /internal/command/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/command/utils.go -------------------------------------------------------------------------------- /internal/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/config/config.go -------------------------------------------------------------------------------- /internal/pkg/const/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/const/const.go -------------------------------------------------------------------------------- /internal/pkg/const/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/const/enum.go -------------------------------------------------------------------------------- /internal/pkg/ctrl/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/ctrl/field.go -------------------------------------------------------------------------------- /internal/pkg/ctrl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/ctrl/main.go -------------------------------------------------------------------------------- /internal/pkg/domain/comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/domain/comm.go -------------------------------------------------------------------------------- /internal/pkg/domain/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/domain/def.go -------------------------------------------------------------------------------- /internal/pkg/helper/column-generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/column-generate.go -------------------------------------------------------------------------------- /internal/pkg/helper/column-vaildator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/column-vaildator.go -------------------------------------------------------------------------------- /internal/pkg/helper/column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/column.go -------------------------------------------------------------------------------- /internal/pkg/helper/comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/comm.go -------------------------------------------------------------------------------- /internal/pkg/helper/creditcard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/creditcard.go -------------------------------------------------------------------------------- /internal/pkg/helper/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/format.go -------------------------------------------------------------------------------- /internal/pkg/helper/idcard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/idcard.go -------------------------------------------------------------------------------- /internal/pkg/helper/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/list.go -------------------------------------------------------------------------------- /internal/pkg/helper/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/mac.go -------------------------------------------------------------------------------- /internal/pkg/helper/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/md5.go -------------------------------------------------------------------------------- /internal/pkg/helper/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/rand.go -------------------------------------------------------------------------------- /internal/pkg/helper/samples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/samples.go -------------------------------------------------------------------------------- /internal/pkg/helper/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/set.go -------------------------------------------------------------------------------- /internal/pkg/helper/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/timestamp.go -------------------------------------------------------------------------------- /internal/pkg/helper/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/token.go -------------------------------------------------------------------------------- /internal/pkg/helper/ulid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/ulid.go -------------------------------------------------------------------------------- /internal/pkg/helper/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/uuid.go -------------------------------------------------------------------------------- /internal/pkg/helper/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/value.go -------------------------------------------------------------------------------- /internal/pkg/helper/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/helper/view.go -------------------------------------------------------------------------------- /internal/pkg/model/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/model/config.go -------------------------------------------------------------------------------- /internal/pkg/model/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/model/index.go -------------------------------------------------------------------------------- /internal/pkg/model/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/model/mock.go -------------------------------------------------------------------------------- /internal/pkg/model/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/model/output.go -------------------------------------------------------------------------------- /internal/pkg/model/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/model/request.go -------------------------------------------------------------------------------- /internal/pkg/model/result.go: -------------------------------------------------------------------------------- 1 | package model 2 | 3 | type FieldMap[K string, V any] map[K]V 4 | -------------------------------------------------------------------------------- /internal/pkg/service/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/article.go -------------------------------------------------------------------------------- /internal/pkg/service/combine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/combine.go -------------------------------------------------------------------------------- /internal/pkg/service/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/decode.go -------------------------------------------------------------------------------- /internal/pkg/service/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/def.go -------------------------------------------------------------------------------- /internal/pkg/service/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/excel.go -------------------------------------------------------------------------------- /internal/pkg/service/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/expression.go -------------------------------------------------------------------------------- /internal/pkg/service/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/field.go -------------------------------------------------------------------------------- /internal/pkg/service/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/file.go -------------------------------------------------------------------------------- /internal/pkg/service/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/fix.go -------------------------------------------------------------------------------- /internal/pkg/service/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/format.go -------------------------------------------------------------------------------- /internal/pkg/service/from-sql-ms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/from-sql-ms.go -------------------------------------------------------------------------------- /internal/pkg/service/from-sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/from-sql.go -------------------------------------------------------------------------------- /internal/pkg/service/from-table-ms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/from-table-ms.go -------------------------------------------------------------------------------- /internal/pkg/service/from-table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/from-table.go -------------------------------------------------------------------------------- /internal/pkg/service/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/list.go -------------------------------------------------------------------------------- /internal/pkg/service/loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/loop.go -------------------------------------------------------------------------------- /internal/pkg/service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/main.go -------------------------------------------------------------------------------- /internal/pkg/service/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/mock.go -------------------------------------------------------------------------------- /internal/pkg/service/output-comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/output-comm.go -------------------------------------------------------------------------------- /internal/pkg/service/output-excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/output-excel.go -------------------------------------------------------------------------------- /internal/pkg/service/output-json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/output-json.go -------------------------------------------------------------------------------- /internal/pkg/service/output-print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/output-print.go -------------------------------------------------------------------------------- /internal/pkg/service/output-sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/output-sql.go -------------------------------------------------------------------------------- /internal/pkg/service/output-text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/output-text.go -------------------------------------------------------------------------------- /internal/pkg/service/output-xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/output-xml.go -------------------------------------------------------------------------------- /internal/pkg/service/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/param.go -------------------------------------------------------------------------------- /internal/pkg/service/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/placeholder.go -------------------------------------------------------------------------------- /internal/pkg/service/protobuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/protobuf.go -------------------------------------------------------------------------------- /internal/pkg/service/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/random.go -------------------------------------------------------------------------------- /internal/pkg/service/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/range.go -------------------------------------------------------------------------------- /internal/pkg/service/res-config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/res-config.go -------------------------------------------------------------------------------- /internal/pkg/service/res-excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/res-excel.go -------------------------------------------------------------------------------- /internal/pkg/service/res-intances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/res-intances.go -------------------------------------------------------------------------------- /internal/pkg/service/res-ranges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/res-ranges.go -------------------------------------------------------------------------------- /internal/pkg/service/res-yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/res-yaml.go -------------------------------------------------------------------------------- /internal/pkg/service/res.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/res.go -------------------------------------------------------------------------------- /internal/pkg/service/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/text.go -------------------------------------------------------------------------------- /internal/pkg/service/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/pkg/service/value.go -------------------------------------------------------------------------------- /internal/server/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/config/config.go -------------------------------------------------------------------------------- /internal/server/config/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/config/db.go -------------------------------------------------------------------------------- /internal/server/controller/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/controller/admin.go -------------------------------------------------------------------------------- /internal/server/controller/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/controller/base.go -------------------------------------------------------------------------------- /internal/server/controller/comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/controller/comm.go -------------------------------------------------------------------------------- /internal/server/controller/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/controller/data.go -------------------------------------------------------------------------------- /internal/server/controller/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/controller/def.go -------------------------------------------------------------------------------- /internal/server/controller/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/controller/mock.go -------------------------------------------------------------------------------- /internal/server/core/middleware/crs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/core/middleware/crs.go -------------------------------------------------------------------------------- /internal/server/core/middleware/initcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/core/middleware/initcheck.go -------------------------------------------------------------------------------- /internal/server/core/module/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/core/module/index.go -------------------------------------------------------------------------------- /internal/server/core/web/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/core/web/index.go -------------------------------------------------------------------------------- /internal/server/core/web/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/core/web/router.go -------------------------------------------------------------------------------- /internal/server/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/index.go -------------------------------------------------------------------------------- /internal/server/index/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/index/admin.go -------------------------------------------------------------------------------- /internal/server/index/comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/index/comm.go -------------------------------------------------------------------------------- /internal/server/index/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/index/data.go -------------------------------------------------------------------------------- /internal/server/index/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/index/def.go -------------------------------------------------------------------------------- /internal/server/index/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/index/mock.go -------------------------------------------------------------------------------- /internal/server/model/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/base.go -------------------------------------------------------------------------------- /internal/server/model/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/models.go -------------------------------------------------------------------------------- /internal/server/model/zd-config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-config.go -------------------------------------------------------------------------------- /internal/server/model/zd-def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-def.go -------------------------------------------------------------------------------- /internal/server/model/zd-excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-excel.go -------------------------------------------------------------------------------- /internal/server/model/zd-field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-field.go -------------------------------------------------------------------------------- /internal/server/model/zd-instances-item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-instances-item.go -------------------------------------------------------------------------------- /internal/server/model/zd-instances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-instances.go -------------------------------------------------------------------------------- /internal/server/model/zd-ranges-item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-ranges-item.go -------------------------------------------------------------------------------- /internal/server/model/zd-ranges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-ranges.go -------------------------------------------------------------------------------- /internal/server/model/zd-refer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-refer.go -------------------------------------------------------------------------------- /internal/server/model/zd-section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-section.go -------------------------------------------------------------------------------- /internal/server/model/zd-text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/model/zd-text.go -------------------------------------------------------------------------------- /internal/server/repo/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/config.go -------------------------------------------------------------------------------- /internal/server/repo/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/def.go -------------------------------------------------------------------------------- /internal/server/repo/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/excel.go -------------------------------------------------------------------------------- /internal/server/repo/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/field.go -------------------------------------------------------------------------------- /internal/server/repo/instances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/instances.go -------------------------------------------------------------------------------- /internal/server/repo/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/mock.go -------------------------------------------------------------------------------- /internal/server/repo/ranges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/ranges.go -------------------------------------------------------------------------------- /internal/server/repo/refer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/refer.go -------------------------------------------------------------------------------- /internal/server/repo/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/section.go -------------------------------------------------------------------------------- /internal/server/repo/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/repo/text.go -------------------------------------------------------------------------------- /internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/server.go -------------------------------------------------------------------------------- /internal/server/service/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/common.go -------------------------------------------------------------------------------- /internal/server/service/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/config.go -------------------------------------------------------------------------------- /internal/server/service/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/data.go -------------------------------------------------------------------------------- /internal/server/service/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/def.go -------------------------------------------------------------------------------- /internal/server/service/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/excel.go -------------------------------------------------------------------------------- /internal/server/service/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/field.go -------------------------------------------------------------------------------- /internal/server/service/instances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/instances.go -------------------------------------------------------------------------------- /internal/server/service/instancesItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/instancesItem.go -------------------------------------------------------------------------------- /internal/server/service/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/mock.go -------------------------------------------------------------------------------- /internal/server/service/preview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/preview.go -------------------------------------------------------------------------------- /internal/server/service/ranges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/ranges.go -------------------------------------------------------------------------------- /internal/server/service/rangesItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/rangesItem.go -------------------------------------------------------------------------------- /internal/server/service/refer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/refer.go -------------------------------------------------------------------------------- /internal/server/service/res.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/res.go -------------------------------------------------------------------------------- /internal/server/service/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/section.go -------------------------------------------------------------------------------- /internal/server/service/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/sync.go -------------------------------------------------------------------------------- /internal/server/service/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/service/text.go -------------------------------------------------------------------------------- /internal/server/utils/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/utils/common.go -------------------------------------------------------------------------------- /internal/server/utils/const/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/utils/const/const.go -------------------------------------------------------------------------------- /internal/server/utils/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/utils/cron.go -------------------------------------------------------------------------------- /internal/server/utils/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/utils/download.go -------------------------------------------------------------------------------- /internal/server/utils/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/utils/gen.go -------------------------------------------------------------------------------- /internal/server/utils/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/internal/server/utils/request.go -------------------------------------------------------------------------------- /pkg/utils/common/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/common/flag.go -------------------------------------------------------------------------------- /pkg/utils/common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/common/utils.go -------------------------------------------------------------------------------- /pkg/utils/date/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/date/date.go -------------------------------------------------------------------------------- /pkg/utils/display/screen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/display/screen.go -------------------------------------------------------------------------------- /pkg/utils/file/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/file/download.go -------------------------------------------------------------------------------- /pkg/utils/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/file/file.go -------------------------------------------------------------------------------- /pkg/utils/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/http/http.go -------------------------------------------------------------------------------- /pkg/utils/i118/i118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/i118/i118.go -------------------------------------------------------------------------------- /pkg/utils/log/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/log/print.go -------------------------------------------------------------------------------- /pkg/utils/numb/numb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/numb/numb.go -------------------------------------------------------------------------------- /pkg/utils/shell/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/shell/shell.go -------------------------------------------------------------------------------- /pkg/utils/stdin/stdin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/stdin/stdin.go -------------------------------------------------------------------------------- /pkg/utils/string/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/string/match.go -------------------------------------------------------------------------------- /pkg/utils/string/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/string/string.go -------------------------------------------------------------------------------- /pkg/utils/string/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/string/uuid.go -------------------------------------------------------------------------------- /pkg/utils/vari/var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/pkg/utils/vari/var.go -------------------------------------------------------------------------------- /res/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/res/en/messages.json -------------------------------------------------------------------------------- /res/en/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/res/en/sample.yaml -------------------------------------------------------------------------------- /res/en/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/res/en/usage.txt -------------------------------------------------------------------------------- /res/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/res/zh/messages.json -------------------------------------------------------------------------------- /res/zh/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/res/zh/sample.yaml -------------------------------------------------------------------------------- /res/zh/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/res/zh/usage.txt -------------------------------------------------------------------------------- /resData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/resData.go -------------------------------------------------------------------------------- /runtime/php/php7/php.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/php/php7/php.exe -------------------------------------------------------------------------------- /runtime/php/php7/php7ts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/php/php7/php7ts.dll -------------------------------------------------------------------------------- /runtime/protobuf/bin/linux/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/bin/linux/protoc -------------------------------------------------------------------------------- /runtime/protobuf/bin/mac/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/bin/mac/protoc -------------------------------------------------------------------------------- /runtime/protobuf/bin/win32/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/bin/win32/protoc.exe -------------------------------------------------------------------------------- /runtime/protobuf/bin/win64/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/bin/win64/protoc.exe -------------------------------------------------------------------------------- /runtime/protobuf/convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/convert.php -------------------------------------------------------------------------------- /runtime/protobuf/person.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/person.proto -------------------------------------------------------------------------------- /runtime/protobuf/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/setup.txt -------------------------------------------------------------------------------- /runtime/protobuf/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/autoload.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/LICENSE -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/installed.json -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/installed.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/LICENSE -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/README.md -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/composer.json -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Any.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Any.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Api.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Duration.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/FieldMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/FieldMask.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/GPBEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/GPBEmpty.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/SourceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/SourceContext.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Struct.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Timestamp.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Type.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Wrappers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Wrappers.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Any.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Any.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Api.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/BoolValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/BoolValue.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/BytesValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/BytesValue.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Descriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Descriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/DescriptorPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/DescriptorPool.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/DoubleValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/DoubleValue.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Duration.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Enum.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/EnumDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/EnumDescriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/EnumValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/EnumValue.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/EnumValueDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/EnumValueDescriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field/Cardinality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field/Cardinality.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field/Kind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field/Kind.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/FieldDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/FieldDescriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/FieldMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/FieldMask.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field_Cardinality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field_Cardinality.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field_Kind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Field_Kind.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/FloatValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/FloatValue.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/GPBEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/GPBEmpty.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Int32Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Int32Value.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Int64Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Int64Value.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/AnyBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/AnyBase.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/CodedInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/CodedInputStream.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/CodedOutputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/CodedOutputStream.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/Descriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/Descriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorPool.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumBuilderContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumBuilderContext.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumValueOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumValueOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/ExtensionRangeOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/ExtensionRangeOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions/CType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions/CType.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions/JSType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions/JSType.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_CType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_CType.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_JSType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_JSType.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptorProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptorProto.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptorSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptorSet.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBDecodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBDecodeException.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBJsonWire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBJsonWire.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBLabel.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBType.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBUtil.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBWire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBWire.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBWireType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBWireType.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MapEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MapEntry.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MapField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MapField.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MapFieldIter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MapFieldIter.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/Message.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MessageBuilderContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MessageBuilderContext.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MessageOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MessageOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodDescriptorProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodDescriptorProto.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofDescriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofDescriptorProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofDescriptorProto.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofField.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/RawInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/RawInputStream.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/RepeatedField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/RepeatedField.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/RepeatedFieldIter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/RepeatedFieldIter.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/ServiceDescriptorProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/ServiceDescriptorProto.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/ServiceOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/ServiceOptions.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/TimestampBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/TimestampBase.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/ListValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/ListValue.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Method.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Mixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Mixin.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/NullValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/NullValue.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/OneofDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/OneofDescriptor.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Option.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/SourceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/SourceContext.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/StringValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/StringValue.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Struct.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Syntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Syntax.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Timestamp.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Type.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/UInt32Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/UInt32Value.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/UInt64Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/UInt64Value.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/Google/Protobuf/Value.php -------------------------------------------------------------------------------- /runtime/protobuf/vendor/google/protobuf/src/phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/runtime/protobuf/vendor/google/protobuf/src/phpdoc.dist.xml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /test/tmp/1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/tmp/1.yaml -------------------------------------------------------------------------------- /test/tmp/keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/tmp/keys.yaml -------------------------------------------------------------------------------- /test/unittest/article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/article.txt -------------------------------------------------------------------------------- /test/unittest/article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/article.yaml -------------------------------------------------------------------------------- /test/unittest/cmd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/cmd.yaml -------------------------------------------------------------------------------- /test/unittest/cmd2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/cmd2.yaml -------------------------------------------------------------------------------- /test/unittest/number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/number.yaml -------------------------------------------------------------------------------- /test/unittest/person.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/person.proto -------------------------------------------------------------------------------- /test/unittest/res-buildin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/res-buildin.yaml -------------------------------------------------------------------------------- /test/unittest/res-users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/res-users.yaml -------------------------------------------------------------------------------- /test/unittest/result.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/result.yaml -------------------------------------------------------------------------------- /test/unittest/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/tables.sql -------------------------------------------------------------------------------- /test/unittest/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/test/unittest/user.txt -------------------------------------------------------------------------------- /tmp/cache/.data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/tmp/cache/.data.db -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/babel.config.js -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/public/favicon.ico -------------------------------------------------------------------------------- /ui/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/public/favicon.png -------------------------------------------------------------------------------- /ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/public/index.html -------------------------------------------------------------------------------- /ui/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/public/logo.png -------------------------------------------------------------------------------- /ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/App.vue -------------------------------------------------------------------------------- /ui/src/api/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/api/manage.js -------------------------------------------------------------------------------- /ui/src/api/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/api/mock.js -------------------------------------------------------------------------------- /ui/src/api/refer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/api/refer.js -------------------------------------------------------------------------------- /ui/src/api/section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/api/section.js -------------------------------------------------------------------------------- /ui/src/api/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/api/utils.js -------------------------------------------------------------------------------- /ui/src/assets/lang/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/assets/lang/en-US.js -------------------------------------------------------------------------------- /ui/src/assets/lang/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/assets/lang/zh-CN.js -------------------------------------------------------------------------------- /ui/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/assets/logo.png -------------------------------------------------------------------------------- /ui/src/components/Design.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/Design.vue -------------------------------------------------------------------------------- /ui/src/components/DesignModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/DesignModal.vue -------------------------------------------------------------------------------- /ui/src/components/FieldInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/FieldInfo.vue -------------------------------------------------------------------------------- /ui/src/components/FieldRange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/FieldRange.vue -------------------------------------------------------------------------------- /ui/src/components/FieldRefer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/FieldRefer.vue -------------------------------------------------------------------------------- /ui/src/components/InstancesItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/InstancesItem.vue -------------------------------------------------------------------------------- /ui/src/components/RangesItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/RangesItem.vue -------------------------------------------------------------------------------- /ui/src/components/SelectLang/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/SelectLang/index.jsx -------------------------------------------------------------------------------- /ui/src/components/SelectLang/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/SelectLang/index.less -------------------------------------------------------------------------------- /ui/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/components/index.js -------------------------------------------------------------------------------- /ui/src/config/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/config/bootstrap.js -------------------------------------------------------------------------------- /ui/src/config/config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | title: 'ZenData', 3 | } 4 | -------------------------------------------------------------------------------- /ui/src/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/config/settings.js -------------------------------------------------------------------------------- /ui/src/layout/BlankLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/BlankLayout.vue -------------------------------------------------------------------------------- /ui/src/layout/ColLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/ColLayout.vue -------------------------------------------------------------------------------- /ui/src/layout/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/Footer.vue -------------------------------------------------------------------------------- /ui/src/layout/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/Header.vue -------------------------------------------------------------------------------- /ui/src/layout/MainLayout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/MainLayout.less -------------------------------------------------------------------------------- /ui/src/layout/MainLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/MainLayout.vue -------------------------------------------------------------------------------- /ui/src/layout/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/Navbar.vue -------------------------------------------------------------------------------- /ui/src/layout/Update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/Update.vue -------------------------------------------------------------------------------- /ui/src/layout/Zui.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/layout/Zui.less -------------------------------------------------------------------------------- /ui/src/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/locales/index.js -------------------------------------------------------------------------------- /ui/src/locales/lang/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/locales/lang/en-US.js -------------------------------------------------------------------------------- /ui/src/locales/lang/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/locales/lang/zh-CN.js -------------------------------------------------------------------------------- /ui/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/main.js -------------------------------------------------------------------------------- /ui/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/router/index.js -------------------------------------------------------------------------------- /ui/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/store/getters.js -------------------------------------------------------------------------------- /ui/src/store/i18nMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/store/i18nMixin.js -------------------------------------------------------------------------------- /ui/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/store/index.js -------------------------------------------------------------------------------- /ui/src/store/mockMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/store/mockMixin.js -------------------------------------------------------------------------------- /ui/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/store/modules/app.js -------------------------------------------------------------------------------- /ui/src/store/modules/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/store/modules/mock.js -------------------------------------------------------------------------------- /ui/src/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/store/mutation-types.js -------------------------------------------------------------------------------- /ui/src/utils/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/axios.js -------------------------------------------------------------------------------- /ui/src/utils/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/bus.js -------------------------------------------------------------------------------- /ui/src/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/common.js -------------------------------------------------------------------------------- /ui/src/utils/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/const.js -------------------------------------------------------------------------------- /ui/src/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/dom.js -------------------------------------------------------------------------------- /ui/src/utils/localCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/localCache.js -------------------------------------------------------------------------------- /ui/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/request.js -------------------------------------------------------------------------------- /ui/src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/utils.js -------------------------------------------------------------------------------- /ui/src/utils/vari.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/utils/vari.js -------------------------------------------------------------------------------- /ui/src/views/data/buildin/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/Layout.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/config/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/config/Edit.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/config/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/config/List.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/excel/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/excel/Edit.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/excel/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/excel/List.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/instances/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/instances/Edit.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/instances/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/instances/List.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/ranges/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/ranges/Edit.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/ranges/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/ranges/List.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/text/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/text/Edit.vue -------------------------------------------------------------------------------- /ui/src/views/data/buildin/text/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/buildin/text/List.vue -------------------------------------------------------------------------------- /ui/src/views/data/mine/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/mine/Edit.vue -------------------------------------------------------------------------------- /ui/src/views/data/mine/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/mine/List.vue -------------------------------------------------------------------------------- /ui/src/views/data/mine/Preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/data/mine/Preview.vue -------------------------------------------------------------------------------- /ui/src/views/mock/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/mock/Index.vue -------------------------------------------------------------------------------- /ui/src/views/mock/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/mock/List.vue -------------------------------------------------------------------------------- /ui/src/views/mock/Preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/mock/Preview.vue -------------------------------------------------------------------------------- /ui/src/views/mock/components/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/mock/components/Edit.vue -------------------------------------------------------------------------------- /ui/src/views/mock/components/Yaml.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/src/views/mock/components/Yaml.vue -------------------------------------------------------------------------------- /ui/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/ui/vue.config.js -------------------------------------------------------------------------------- /users/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/users/test.yaml -------------------------------------------------------------------------------- /users/test/number/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/users/test/number/v1.yaml -------------------------------------------------------------------------------- /win64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/win64.yaml -------------------------------------------------------------------------------- /xdoc/bak/company-all.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/company-all.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/互联网黑话.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/互联网黑话.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/介词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/介词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/代词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/代词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/副词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/副词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/动词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/动词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/助词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/助词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/名词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/名词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/形容词做谓语.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/形容词做谓语.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/形容词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/形容词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/数词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/数词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/连词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/连词词库.xlsx -------------------------------------------------------------------------------- /xdoc/bak/words/v1/量词词库.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/bak/words/v1/量词词库.xlsx -------------------------------------------------------------------------------- /xdoc/clear-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/clear-data.txt -------------------------------------------------------------------------------- /xdoc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/favicon.ico -------------------------------------------------------------------------------- /xdoc/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/favicon.png -------------------------------------------------------------------------------- /xdoc/import-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/import-data.txt -------------------------------------------------------------------------------- /xdoc/main.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/main.manifest -------------------------------------------------------------------------------- /xdoc/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/openapi.yaml -------------------------------------------------------------------------------- /xdoc/perfomance-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/perfomance-test.txt -------------------------------------------------------------------------------- /xdoc/steup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/steup.txt -------------------------------------------------------------------------------- /xdoc/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/swagger.json -------------------------------------------------------------------------------- /xdoc/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/test.json -------------------------------------------------------------------------------- /xdoc/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/test.yaml -------------------------------------------------------------------------------- /xdoc/zendata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/xdoc/zendata.svg -------------------------------------------------------------------------------- /yaml/animal_plant/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/animal_plant/v1.yaml -------------------------------------------------------------------------------- /yaml/areacode/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/areacode/v1.yaml -------------------------------------------------------------------------------- /yaml/article/chinese/slang/01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/article/chinese/slang/01.yaml -------------------------------------------------------------------------------- /yaml/article/chinese/slang/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/article/chinese/slang/sample.txt -------------------------------------------------------------------------------- /yaml/article/chinese/slang/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/article/chinese/slang/sample.yaml -------------------------------------------------------------------------------- /yaml/card/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/card/v1.yaml -------------------------------------------------------------------------------- /yaml/chronology/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/chronology/v1.yaml -------------------------------------------------------------------------------- /yaml/city/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/city/v1.yaml -------------------------------------------------------------------------------- /yaml/color/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/color/v1.yaml -------------------------------------------------------------------------------- /yaml/company/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/company/v1.yaml -------------------------------------------------------------------------------- /yaml/country/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/country/v1.yaml -------------------------------------------------------------------------------- /yaml/domain/domain.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/domain/domain.v1.yaml -------------------------------------------------------------------------------- /yaml/domain/esp.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/domain/esp.v1.yaml -------------------------------------------------------------------------------- /yaml/domain/postfix.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/domain/postfix.v1.yaml -------------------------------------------------------------------------------- /yaml/earthly_branches/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/earthly_branches/v1.yaml -------------------------------------------------------------------------------- /yaml/email/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/email/v1.yaml -------------------------------------------------------------------------------- /yaml/five_elements/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/five_elements/v1.yaml -------------------------------------------------------------------------------- /yaml/food/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/food/v1.yaml -------------------------------------------------------------------------------- /yaml/fruit/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/fruit/v1.yaml -------------------------------------------------------------------------------- /yaml/heavenly_stems/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/heavenly_stems/v1.yaml -------------------------------------------------------------------------------- /yaml/idiom/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/idiom/v1.yaml -------------------------------------------------------------------------------- /yaml/ip/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/ip/v1.yaml -------------------------------------------------------------------------------- /yaml/ip/v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/ip/v2.yaml -------------------------------------------------------------------------------- /yaml/joke/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/joke/v1.yaml -------------------------------------------------------------------------------- /yaml/log/agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/log/agent.txt -------------------------------------------------------------------------------- /yaml/log/apache.access.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/log/apache.access.v1.yaml -------------------------------------------------------------------------------- /yaml/log/uri.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/log/uri.txt -------------------------------------------------------------------------------- /yaml/name/cnaccount.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/name/cnaccount.v1.yaml -------------------------------------------------------------------------------- /yaml/name/cnreal.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/name/cnreal.v1.yaml -------------------------------------------------------------------------------- /yaml/name/enaccount.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/name/enaccount.v1.yaml -------------------------------------------------------------------------------- /yaml/name/enreal.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/name/enreal.v1.yaml -------------------------------------------------------------------------------- /yaml/name/letters.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/name/letters.v1.yaml -------------------------------------------------------------------------------- /yaml/name/numbers.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/name/numbers.v1.yaml -------------------------------------------------------------------------------- /yaml/occupation/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/occupation/v1.yaml -------------------------------------------------------------------------------- /yaml/phone/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/phone/v1.yaml -------------------------------------------------------------------------------- /yaml/phone/zone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/phone/zone.txt -------------------------------------------------------------------------------- /yaml/planet/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/planet/v1.yaml -------------------------------------------------------------------------------- /yaml/poetry_ancient/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/poetry_ancient/v1.yaml -------------------------------------------------------------------------------- /yaml/season/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/season/v1.yaml -------------------------------------------------------------------------------- /yaml/song/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/song/v1.yaml -------------------------------------------------------------------------------- /yaml/time/date.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/time/date.v1.yaml -------------------------------------------------------------------------------- /yaml/time/monthday.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/time/monthday.v1.yaml -------------------------------------------------------------------------------- /yaml/time/time.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/time/time.v1.yaml -------------------------------------------------------------------------------- /yaml/ulid/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/ulid/v1.yaml -------------------------------------------------------------------------------- /yaml/uuid/prefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/uuid/prefix.yaml -------------------------------------------------------------------------------- /yaml/uuid/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/uuid/v1.yaml -------------------------------------------------------------------------------- /yaml/uuid/v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/uuid/v2.yaml -------------------------------------------------------------------------------- /yaml/xiehouyu/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/xiehouyu/v1.yaml -------------------------------------------------------------------------------- /yaml/zentao/insts-of-insts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/zentao/insts-of-insts.yaml -------------------------------------------------------------------------------- /yaml/zentao/ip/private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/zentao/ip/private.yaml -------------------------------------------------------------------------------- /yaml/zentao/number/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/zendata/HEAD/yaml/zentao/number/v1.yaml --------------------------------------------------------------------------------