liujiandao
2023-11-16 d20acf38c36c11ee4428c3e74a17f5870dc61b51
model/test/response/product.go
New file
@@ -0,0 +1,31 @@
package productresponse
type Product struct {
   Name             string  `json:"name" form:"name" gorm:"column:name;comment:名称;size:255;"`
   Number           string  `json:"number" form:"number" gorm:"column:number;comment:编码;size:255;"`
   SupplierId       uint    `json:"supplierId" form:"supplierId" gorm:"column:supplier_id;comment:供应商id;size:255;"`
   Unit             string  `json:"unit" form:"unit" gorm:"column:unit;comment:计量单位;size:255;"`
   PurchasePrice    float64 `json:"purchasePrice" form:"purchasePrice" gorm:"column:purchase_price;comment:采购价格;"`
   DeliveryTime     int     `json:"deliveryTime" form:"deliveryTime" gorm:"column:delivery_time;comment:;size:11;"`
   ShippingDuration int     `json:"shippingDuration" form:"shippingDuration" gorm:"column:shipping_duration;comment:物流时长;size:11;"`
   Specifications   string  `json:"specifications" form:"specifications" gorm:"column:specifications;comment:规格;size:255;"`
   ModelNumber      string  `json:"modelNumber" form:"modelNumber" gorm:"column:model_number;comment:型号;size:255;"`
   ProductType      string  `json:"productType" form:"productType" gorm:"column:product_type;comment:产品类别;size:255;"`
   MinimumStock     int64   `json:"minimumStock" form:"minimumStock" gorm:"column:minimum_stock;comment:最低库存;"`
   MaximumStock     int64   `json:"maximumStock" form:"maximumStock" gorm:"column:maximum_stock;comment:最高库存;"`
   Remark           string  `json:"remark" form:"remark" gorm:"column:remark;comment:备注;size:255;"`
   SupplierName     string  `json:"supplierName" gorm:"-"`
   CategoryName     string  `gorm:"type:varchar(255);comment:产品类别名称" json:"categoryName"` //产品类别名称
}
type Material struct {
   Name           string `json:"name" form:"name" gorm:"column:name;comment:名称;size:255;"`
   Number         string `json:"number" form:"number" gorm:"column:number;comment:编码;size:255;"`
   Unit           string `json:"unit" form:"unit" gorm:"column:unit;comment:计量单位;size:255;"`
   Specifications string `json:"specifications" form:"specifications" gorm:"column:specifications;comment:规格;size:255;"`
   ModelNumber    string `json:"modelNumber" form:"modelNumber" gorm:"column:model_number;comment:型号;size:255;"`
   MinimumStock   int64  `json:"minimumStock" form:"minimumStock" gorm:"column:minimum_stock;comment:最低库存;"`
   MaximumStock   int64  `json:"maximumStock" form:"maximumStock" gorm:"column:maximum_stock;comment:最高库存;"`
   Remark         string `json:"remark" form:"remark" gorm:"column:remark;comment:备注;size:255;"`
   CategoryName   string `gorm:"type:varchar(255);comment:产品类别名称" json:"categoryName"` //产品类别名称
}