package model import ( "time" ) type BigBuyDetail struct { // 采购订单 ID int `json:"id" gorm:"column:id"` DoneDate time.Time `json:"DoneDate" gorm:"column:DoneDate"` ArrivalStatu int `json:"arrivalStatu" gorm:"column:arrivalStatu"` BuyeCode string `json:"buyeCode" gorm:"column:buyeCode"` BuyerDate time.Time `json:"buyerDate" gorm:"column:buyerDate"` BuyerPerson int `json:"buyerPerson" gorm:"column:buyerPerson"` Enable int `json:"enable" gorm:"column:enable"` MatchCode string `json:"matchCode" gorm:"column:matchCode"` Note string `json:"note" gorm:"column:note"` PastureID int `json:"pastureId" gorm:"column:pastureId"` ProviderID int `json:"providerId" gorm:"column:providerId"` Statu int `json:"statu" gorm:"column:statu"` ZeroCou int `json:"zeroCou" gorm:"column:zeroCou"` //配单数量 SapNumber string `json:"sapNumber" gorm:"column:sapNumber"` SapStatus int `json:"sapStatus" gorm:"column:sapStatus"` } type BuyDetail struct { // 采购订单明细 ID int `json:"id" gorm:"column:id"` // Model Amount int `json:"amount" gorm:"column:amount"` BigID int `json:"bigId" gorm:"column:bigId"` BrandID int `json:"brandId" gorm:"column:brandId"` ContractID int `json:"contractId" gorm:"column:contractId"` PastureID int `json:"pastureId" gorm:"column:pastureId"` ContractCode string `json:"contractCode" gorm:"column:contractCode"` DepartmentName string `json:"departmentName" gorm:"column:departmentName"` IsStorage int `json:"isStorage" gorm:"column:isStorage"` ReceiveDate time.Time `json:"receiveDate" gorm:"column:receiveDate"` PartCode string `json:"partCode" gorm:"column:partCode"` Price float64 `json:"price" gorm:"column:price"` ReceiveAmount string `json:"receiveAmount" gorm:"column:receiveAmount"` Statue int `json:"statue" gorm:"column:statue"` Remark string `json:"remark" gorm:"column:remark"` Note string `json:"note" gorm:"column:note"` StoredQuantity string `json:"storedQuantity" gorm:"column:storedQuantity"` SumAmount int `json:"sumAmount" gorm:"column:sumAmount"` Enable int `json:"enable" gorm:"column:enable"` Dflag int `json:"dflag" gorm:"column:dflag"` Unit string IsZeroStock int RowNumber int `json:"rowNumber" gorm:"column:rowNumber"` } type BigBuyDetailReq struct { Code string `json:"matchCode" gorm:"column:matchcode"` ID string `json:"id" gorm:"column:id"` }