cm_maintain.go 449 B

123456789
  1. package models
  2. type CmMaintain struct {
  3. Id int `xorm:"not null pk autoincr INT(11)"`
  4. MaintainTime string `xorm:"not null comment('维护时间') VARCHAR(32)"`
  5. Duration int `xorm:"not null comment('维护时长') TINYINT(4)"`
  6. Msg string `xorm:"not null comment('维护内容') VARCHAR(255)"`
  7. Status int `xorm:"not null comment('维护状态,0:未设置,1:未开始,2:进行中') TINYINT(4)"`
  8. }