15 lines
434 B
Go
15 lines
434 B
Go
package admin
|
|
|
|
type SysVersion struct {
|
|
Id string `json:"id" gorm:"primary_key"`
|
|
Version string `json:"version"`
|
|
Description string `json:"description"`
|
|
Milestone string `json:"milestone"`
|
|
CreateBy string `json:"createBy"`
|
|
CreateTime int64 `json:"createTime"`
|
|
UpdateBy string `json:"updateBy"`
|
|
UpdateTime int64 `json:"updateTime"`
|
|
State string `json:"state"`
|
|
Del int `json:"del"`
|
|
}
|