This commit is contained in:
tengge1 2020-03-24 22:07:51 +08:00
parent 7a0bf87fde
commit 689b8ea45b
3 changed files with 26 additions and 0 deletions

1
.gitignore vendored
View File

@ -106,3 +106,4 @@ __pycache__
/ShadowEditor.Web/test/think
/ShadowEditor.Web/Upload/TestFtpServer
/SceneScript
/ShadowEditor.Server.Go/*.exe

View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}

View File

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