liujiandao
2024-03-07 63558d60419edd772f8f8c8b413326d4550783f0
model/purchase/request/purchase.go
@@ -46,4 +46,8 @@
   PriceAdjustmentType purchase.PriceAdjustmentType `json:"priceAdjustmentType" form:"priceAdjustmentType" gorm:"type:decimal(12,2);not null;default 0;comment:价格调整类型"` //价格调整类型
   PriceAdjustment     decimal.Decimal              `json:"priceAdjustment" form:"priceAdjustment" gorm:"type:decimal(12,2);not null;default 0.00;comment:价格调整"`        //价格调整值
   RealTotalPrice      decimal.Decimal              `json:"realTotalPrice" form:"realTotalPrice" gorm:"type:decimal(12,2);not null;default 0.00;comment:最终价格"`          //最终价格
   Warehouse           string                       `json:"warehouse" form:"warehouse" gorm:"type:varchar(255);not null;default '';comment:收货仓库"`                       //收货仓库
   WarehouseAddress    string                       `json:"warehouseAddress" form:"warehouseAddress" gorm:"type:varchar(512);default '';comment:收货仓库地址"`                //收货仓库地址
   Principal           string                       `json:"principal" form:"principal" gorm:"type:varchar(255);not null;default '';comment:仓库负责人"`                      //仓库负责人
   SourceOrder         string                       `json:"sourceOrder" gorm:"type:varchar(255);comment:来源单据"`                                                          //来源单据
}