deliveryandrecall.go 452 B

12345678910111213
  1. package model
  2. // 脖环出厂登记和脖环召回关联表
  3. type DeliveryAndRecall struct {
  4. FactoryId int64 `xorm:"bigint(20) 'factoryid'"` //出厂登记id
  5. RecallId int64 `xorm:"bigint(20) 'recallid'"` //召回id
  6. Status int64 `xorm:"int(1) 'status'"` //0 出厂登记,1 脖环召回
  7. REGISTNUM2 int64 `xorm:"int(11) 'REGIST_NUM_2'"` //召回id
  8. }
  9. func (s *DeliveryAndRecall) TableName() string {
  10. return "deliveryandrecall"
  11. }