liujiandao
2023-11-25 b84057ed929c035b6f70ae6a0079e5c440bc93da
models/scrap.go
@@ -15,9 +15,9 @@
      Number string `json:"number" gorm:"column:number;type:varchar(255)"`  //单号
      Status int    `json:"status" gorm:"type:tinyint;not null;comment:状态"` //状态
      ProductId   int             `json:"productId" gorm:"type:int;not null;comment:产品id"`            //产品id
      ProductName string          `json:"productName" gorm:"type:varchar(255);not null;comment:产品名称"` //产品名称
      Quantity    decimal.Decimal `json:"quantity" gorm:"type:decimal(20,2);not null;comment:数量"`     //数量
      ProductId   int             `json:"productId" gorm:"type:int;not null;comment:产品id"`                  //产品id
      ProductName string          `json:"productName" gorm:"type:varchar(255);not null;comment:产品名称"`       //产品名称
      Quantity    decimal.Decimal `json:"quantity" gorm:"type:decimal(20,2);not null;default:0;comment:数量"` //数量
      FromLocationId int      `json:"fromLocationId"   gorm:"type:int;not null;comment:源位置id"` //源位置id
      FromLocation   Location `json:"fromLocation"     gorm:"foreignKey:FromLocationId"`       //源位置