gokins/model/t_yml_template.go
2021-07-22 10:53:38 +08:00

14 lines
378 B
Go

package model
import (
"time"
)
type TYmlTemplate struct {
Aid int64 `xorm:"not null pk autoincr BIGINT(20)" json:"aid"`
Name string `xorm:"VARCHAR(64)" json:"name"`
YmlContent string `xorm:"LONGTEXT" json:"ymlContent"`
Deleted int `xorm:"default 0 INT(1)" json:"deleted"`
DeletedTime time.Time `xorm:"DATETIME" json:"deletedTime"`
}