factory.go 803 B

123456789101112131415161718192021222324
  1. package model
  2. import "time"
  3. // 脖环出厂登记
  4. type Factory struct {
  5. Id int64 `xorm:"pk autoincr 'id'"`
  6. Pastureid string `xorm:"varchar(80) 'FARM_UUID'"` //牧场id
  7. Count int64 `xorm:"int(11) 'count'"` //出厂数量
  8. Batch string `xorm:"varchar(30) 'batch'"` //出厂批次
  9. Genre int64 `xorm:"int(1) 'genre'"` //0 购买,1 置换 2召回
  10. Recall int64 `xorm:"int(11) 'recall'"` //关联召回批次数
  11. CreateName string `xorm:"varchar(30) 'createname'"` //登记人
  12. CreateTime time.Time `xorm:"DATETIME 'createtime'"` //登记时间
  13. }
  14. func (s *Factory) TableName() string {
  15. return "factory"
  16. }
  17. type FactoryList struct {
  18. Factory `xorm:"extends"`
  19. PastureName string `xorm:"FARM_NAME"`
  20. }