├── .gitignore ├── README.md ├── ZYSwiftUIFrame ├── ZYSwiftUIFrame.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcuserdata │ │ │ └── yusael.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── yusael.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ZYSwiftUIFrame │ ├── Api │ ├── BaseApi.swift │ ├── CommonApiObj.swift │ ├── CommonVM.swift │ ├── NetworkManager.swift │ ├── ServerResponse.swift │ └── UploadApi.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── head.imageset │ │ ├── Contents.json │ │ └── 鹿.png │ ├── Global │ ├── Constants.swift │ └── ImageUtil.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── UI │ ├── About │ │ └── AboutView.swift │ ├── ContentView.swift │ ├── Map │ │ ├── LocationViewModel.swift │ │ ├── MapDemo.swift │ │ └── MapNavigation.swift │ ├── Meeting │ │ ├── Meeting.swift │ │ ├── MeetingAPI.swift │ │ ├── MeetingDetailView.swift │ │ ├── MeetingListView.swift │ │ └── MeetingVM.swift │ ├── Message │ │ ├── Message.swift │ │ ├── MessageAPI.swift │ │ ├── MessageDetailView.swift │ │ ├── MessageListView.swift │ │ └── MessageVM.swift │ ├── Notification │ │ └── NotificationView.swift │ ├── Upload │ │ └── Upload.swift │ ├── User │ │ ├── User.swift │ │ ├── UserAPI.swift │ │ ├── UserDetailView.swift │ │ ├── UserListView.swift │ │ └── UserVM.swift │ └── ZYSwiftUIFrameApp.swift │ └── UIFrame │ ├── Common │ ├── ButtonView.swift │ ├── CommonText.swift │ └── ImageShowView.swift │ ├── Enhance │ ├── CodableDefault.swift │ └── Extensions.swift │ ├── ImagePick │ ├── ImagePickerView.swift │ └── MultipleImagePickView.swift │ ├── Refresh │ ├── ZYListView.swift │ └── ZYRefreshView.swift │ └── ZYNavBarView.swift └── go_api_server ├── api ├── enter.go ├── meeting.go ├── message.go ├── sys_user.go └── upload_download.go ├── common └── database.go ├── config └── application.yml ├── global └── global.go ├── go.mod ├── go.sum ├── main ├── main.go ├── model ├── base_model.go ├── common │ ├── request │ │ ├── common.go │ │ └── meeting.go │ └── response │ │ ├── common.go │ │ ├── meeting.go │ │ └── response.go ├── meeting.go ├── message.go ├── sys_user.go └── upload_download.go ├── router ├── enter.go ├── meeting.go ├── message.go ├── sys_user.go └── upload_download.go ├── service ├── enter.go ├── meeting.go ├── message.go ├── sys_user.go └── upload_download.go ├── sql └── testpro.sql ├── uploads └── file │ ├── 2022_04_03_21_26_39_51file.png │ ├── 2022_04_03_21_26_39_821file.png │ └── 2022_04_03_21_26_39_937file.png └── utils └── transition.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/README.md -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.xcworkspace/xcuserdata/yusael.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/project.xcworkspace/xcuserdata/yusael.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/xcuserdata/yusael.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/xcuserdata/yusael.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/xcuserdata/yusael.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame.xcodeproj/xcuserdata/yusael.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Api/BaseApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Api/BaseApi.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Api/CommonApiObj.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Api/CommonApiObj.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Api/CommonVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Api/CommonVM.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Api/NetworkManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Api/NetworkManager.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Api/ServerResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Api/ServerResponse.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Api/UploadApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Api/UploadApi.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/head.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/head.imageset/Contents.json -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/head.imageset/鹿.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Assets.xcassets/head.imageset/鹿.png -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Global/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Global/Constants.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Global/ImageUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Global/ImageUtil.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/About/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/About/AboutView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/ContentView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Map/LocationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Map/LocationViewModel.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Map/MapDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Map/MapDemo.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Map/MapNavigation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Map/MapNavigation.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/Meeting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/Meeting.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/MeetingAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/MeetingAPI.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/MeetingDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/MeetingDetailView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/MeetingListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/MeetingListView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/MeetingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Meeting/MeetingVM.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/Message.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/MessageAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/MessageAPI.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/MessageDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/MessageDetailView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/MessageListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/MessageListView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/MessageVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Message/MessageVM.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Notification/NotificationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Notification/NotificationView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Upload/Upload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/Upload/Upload.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/User.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/UserAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/UserAPI.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/UserDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/UserDetailView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/UserListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/UserListView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/UserVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/User/UserVM.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UI/ZYSwiftUIFrameApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UI/ZYSwiftUIFrameApp.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Common/ButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Common/ButtonView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Common/CommonText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Common/CommonText.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Common/ImageShowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Common/ImageShowView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Enhance/CodableDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Enhance/CodableDefault.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Enhance/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Enhance/Extensions.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/ImagePick/ImagePickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/ImagePick/ImagePickerView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/ImagePick/MultipleImagePickView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/ImagePick/MultipleImagePickView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Refresh/ZYListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Refresh/ZYListView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Refresh/ZYRefreshView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/Refresh/ZYRefreshView.swift -------------------------------------------------------------------------------- /ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/ZYNavBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/ZYSwiftUIFrame/ZYSwiftUIFrame/UIFrame/ZYNavBarView.swift -------------------------------------------------------------------------------- /go_api_server/api/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/api/enter.go -------------------------------------------------------------------------------- /go_api_server/api/meeting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/api/meeting.go -------------------------------------------------------------------------------- /go_api_server/api/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/api/message.go -------------------------------------------------------------------------------- /go_api_server/api/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/api/sys_user.go -------------------------------------------------------------------------------- /go_api_server/api/upload_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/api/upload_download.go -------------------------------------------------------------------------------- /go_api_server/common/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/common/database.go -------------------------------------------------------------------------------- /go_api_server/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/config/application.yml -------------------------------------------------------------------------------- /go_api_server/global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/global/global.go -------------------------------------------------------------------------------- /go_api_server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/go.mod -------------------------------------------------------------------------------- /go_api_server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/go.sum -------------------------------------------------------------------------------- /go_api_server/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/main -------------------------------------------------------------------------------- /go_api_server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/main.go -------------------------------------------------------------------------------- /go_api_server/model/base_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/base_model.go -------------------------------------------------------------------------------- /go_api_server/model/common/request/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/common/request/common.go -------------------------------------------------------------------------------- /go_api_server/model/common/request/meeting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/common/request/meeting.go -------------------------------------------------------------------------------- /go_api_server/model/common/response/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/common/response/common.go -------------------------------------------------------------------------------- /go_api_server/model/common/response/meeting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/common/response/meeting.go -------------------------------------------------------------------------------- /go_api_server/model/common/response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/common/response/response.go -------------------------------------------------------------------------------- /go_api_server/model/meeting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/meeting.go -------------------------------------------------------------------------------- /go_api_server/model/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/message.go -------------------------------------------------------------------------------- /go_api_server/model/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/sys_user.go -------------------------------------------------------------------------------- /go_api_server/model/upload_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/model/upload_download.go -------------------------------------------------------------------------------- /go_api_server/router/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/router/enter.go -------------------------------------------------------------------------------- /go_api_server/router/meeting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/router/meeting.go -------------------------------------------------------------------------------- /go_api_server/router/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/router/message.go -------------------------------------------------------------------------------- /go_api_server/router/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/router/sys_user.go -------------------------------------------------------------------------------- /go_api_server/router/upload_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/router/upload_download.go -------------------------------------------------------------------------------- /go_api_server/service/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/service/enter.go -------------------------------------------------------------------------------- /go_api_server/service/meeting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/service/meeting.go -------------------------------------------------------------------------------- /go_api_server/service/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/service/message.go -------------------------------------------------------------------------------- /go_api_server/service/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/service/sys_user.go -------------------------------------------------------------------------------- /go_api_server/service/upload_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/service/upload_download.go -------------------------------------------------------------------------------- /go_api_server/sql/testpro.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/sql/testpro.sql -------------------------------------------------------------------------------- /go_api_server/uploads/file/2022_04_03_21_26_39_51file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/uploads/file/2022_04_03_21_26_39_51file.png -------------------------------------------------------------------------------- /go_api_server/uploads/file/2022_04_03_21_26_39_821file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/uploads/file/2022_04_03_21_26_39_821file.png -------------------------------------------------------------------------------- /go_api_server/uploads/file/2022_04_03_21_26_39_937file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/uploads/file/2022_04_03_21_26_39_937file.png -------------------------------------------------------------------------------- /go_api_server/utils/transition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szluyu99/ZYSwiftUIFrame/HEAD/go_api_server/utils/transition.go --------------------------------------------------------------------------------