models/operation_details.go
@@ -30,8 +30,8 @@
      Remark           string          `gorm:"type:varchar(1024);comment:备注" json:"remark"`
      IsInternalOutput bool            `json:"isInternalOutput"` //是否调拨产生的出库
      Cost      decimal.Decimal `json:"cost"`      //成本单价
      SalePrice decimal.Decimal `json:"salePrice"` //销售单价
      Cost      decimal.Decimal `json:"cost" gorm:"-"`      //成本单价
      SalePrice decimal.Decimal `json:"salePrice" gorm:"-"` //销售单价
   }
   OperationDetailsSearch struct {