Add something for install.

This commit is contained in:
zicla
2018-12-04 21:34:33 +08:00
parent 5611c5acb6
commit ea1bd27aa8
12 changed files with 133 additions and 12 deletions

11
rest/install_model.go Normal file
View File

@ -0,0 +1,11 @@
package rest
/**
* 表名对应的表结构
*/
type InstallTableInfo struct {
Name string `json:"name"`
CreateSql string `json:"createSql"`
TableExist bool `json:"tableExist"`
ExistCreateSql string `json:"existCreateSql"`
}