From 689b8ea45b643dc24394cb408daa0a48a58e20a6 Mon Sep 17 00:00:00 2001 From: tengge1 <930372551@qq.com> Date: Tue, 24 Mar 2020 22:07:51 +0800 Subject: [PATCH] go --- .gitignore | 1 + ShadowEditor.Server.Go/main.go | 7 +++++++ .../model/animation/AnimationModel.go | 18 ++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 ShadowEditor.Server.Go/main.go create mode 100644 ShadowEditor.Server.Go/model/animation/AnimationModel.go diff --git a/.gitignore b/.gitignore index 5b534578..713e31a9 100644 --- a/.gitignore +++ b/.gitignore @@ -106,3 +106,4 @@ __pycache__ /ShadowEditor.Web/test/think /ShadowEditor.Web/Upload/TestFtpServer /SceneScript +/ShadowEditor.Server.Go/*.exe diff --git a/ShadowEditor.Server.Go/main.go b/ShadowEditor.Server.Go/main.go new file mode 100644 index 00000000..f7b60bde --- /dev/null +++ b/ShadowEditor.Server.Go/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world!") +} diff --git a/ShadowEditor.Server.Go/model/animation/AnimationModel.go b/ShadowEditor.Server.Go/model/animation/AnimationModel.go new file mode 100644 index 00000000..1906fdc5 --- /dev/null +++ b/ShadowEditor.Server.Go/model/animation/AnimationModel.go @@ -0,0 +1,18 @@ +package animation + +type AnimationModel struct { + ID string + Name string + CategoryID string + CategoryName string + TotalPinYin string + FirstPinYin string + Type string + Url string + FileName string + FileSize string + FileType string + SaveName string + SavePath string + AddTime string +}