jiangshuai
2023-10-20 96844c22ef3fba86a55e0af1b51bc1009d6fa950
request/product_request.go
@@ -1,6 +1,51 @@
package request
import (
   "github.com/shopspring/decimal"
   "wms/constvar"
)
type GetProductList struct {
   PageInfo
   KeyWord string `json:"keyWord"`
   KeyWord    string `json:"keyWord"`
   CategoryId int    `json:"categoryId"`
}
type QueryOperationList struct {
   PageInfo
   ProductId string `json:"productId"`
}
type AddDisuse struct {
   ProductId string `json:"productId"`
   //ProductName    string          `json:"productName"`
   Amount         decimal.Decimal `json:"amount"`
   FromLocationId int             `json:"fromLocationId"`
   ToLocationId   int             `json:"toLocationId"`
   SourceNumber   string          `json:"sourceNumber"`
   //Unit           string          `json:"unit"`
}
type QueryDisuseList struct {
   PageInfo
   Number string `json:"number"`
}
type UpdateDisuse struct {
   Id                int                        `json:"id"`
   ProductId         string                     `json:"productId"`
   Amount            decimal.Decimal            `json:"amount"`
   FromLocationId    int                        `json:"fromLocationId"`
   ToLocationId      int                        `json:"toLocationId"`
   SourceNumber      string                     `json:"sourceNumber"`
   Number            string                     `json:"number"`
   Status            constvar.OperationStatus   `json:"status"`
   OperationDate     string                     `json:"operationDate"`
   BaseOperationType constvar.BaseOperationType `json:"baseOperationType"`
}
type QueryOperationHistory struct {
   PageInfo
   ProductId  string `json:"productId"`
   LocationId int    `json:"locationId"`
}