12345678
  1. package model
  2. type SysCaseConf struct {
  3. ConfId string `xorm:"not null pk VARCHAR(64)"`
  4. CaseId string `xorm:"not null VARCHAR(64)"`
  5. ConfType string `xorm:"VARCHAR(20)"`
  6. Status int `xorm:"SMALLINT(6)"`
  7. }