recall.go 615 B

123456789101112131415161718
  1. package model
  2. import "time"
  3. // 脖环召回记录
  4. type Recall struct {
  5. Id int64 `xorm:"pk autoincr 'id'"`
  6. Pastureid string `xorm:"varchar(30) 'pastureid'"` //牧场id
  7. Count int64 `xorm:"int(11) 'count'"` //召回数量
  8. Batch string `xorm:"varchar(30) 'batch'"` //召回批次
  9. Factory int64 `xorm:"int(11) 'factory'"` //关联召回批次数
  10. CreateName string `xorm:"varchar(30) 'createname'"` //登记人
  11. CreateTime time.Time `xorm:"DATETIME 'createtime'"` //登记时间
  12. }
  13. func (s *Recall) TableName() string {
  14. return "recall"
  15. }