12345678
  1. package model
  2. type TaVotingRules struct {
  3. RuleId int `xorm:"not null pk autoincr SMALLINT(6)"`
  4. RuleValue string `xorm:"TEXT"`
  5. Desc string `xorm:"TEXT"`
  6. Status int `xorm:"SMALLINT(6)"`
  7. }