- package model
- // 脖环出厂登记和脖环召回关联表
- type DeliveryAndRecall struct {
- FactoryId int64 `xorm:"bigint(20) 'factoryid'"` //出厂登记id
- RecallId int64 `xorm:"bigint(20) 'recallid'"` //召回id
- Status int64 `xorm:"int(1) 'status'"` //0 出厂登记,1 脖环召回
- REGISTNUM2 int64 `xorm:"int(11) 'REGIST_NUM_2'"` //召回id
- }
- func (s *DeliveryAndRecall) TableName() string {
- return "deliveryandrecall"
- }
|