cm_version.go 307 B

123456789101112
  1. package models
  2. import (
  3. "time"
  4. )
  5. type CmVersion struct {
  6. Id int `xorm:"not null pk autoincr comment('自增ID') INT(11)"`
  7. Name string `xorm:"comment('版本号') VARCHAR(255)"`
  8. CreateTime time.Time `xorm:"comment('创建时间') DATETIME"`
  9. Content string `xorm:"TEXT"`
  10. }