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 +}