|
@@ -357,4 +357,37 @@ type VmWarehouseOutInfo struct {
|
357
|
357
|
type VmWarehouseInfo struct {
|
358
|
358
|
GoodId int64 `gorm:"column:good_id" json:"good_id"`
|
359
|
359
|
Count int64 `gorm:"column:count" json:"count"`
|
|
360
|
+ OrgId int64 `gorm:"column:org_id" json:"org_id"`
|
|
361
|
+}
|
|
362
|
+
|
|
363
|
+type WarehouseOutInfoOne struct {
|
|
364
|
+ ID int64 `gorm:"column:id" json:"id"`
|
|
365
|
+ WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
|
|
366
|
+ WarehouseInfotId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id"`
|
|
367
|
+ GoodId int64 `gorm:"column:good_id" json:"good_id"`
|
|
368
|
+ GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
|
|
369
|
+ WarehousingOutTarget int64 `gorm:"column:warehousing_out_target" json:"warehousing_out_target"`
|
|
370
|
+ Count int64 `gorm:"column:count" json:"count"`
|
|
371
|
+ Price float64 `gorm:"column:price" json:"price"`
|
|
372
|
+ TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
|
|
373
|
+ ProductDate int64 `gorm:"column:product_date" json:"product_date"`
|
|
374
|
+ ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
|
|
375
|
+ Mtime int64 `gorm:"column:mtime" json:"mtime"`
|
|
376
|
+ Ctime int64 `gorm:"column:ctime" json:"ctime"`
|
|
377
|
+ Status int64 `gorm:"column:status" json:"status"`
|
|
378
|
+ OrgId int64 `gorm:"column:org_id" json:"org_id"`
|
|
379
|
+ Remark string `gorm:"column:remark" json:"remark"`
|
|
380
|
+ IsCancel int64 `gorm:"column:is_cancel" json:"is_cancel"`
|
|
381
|
+ WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
|
|
382
|
+ Type int64 `gorm:"column:type" json:"type"`
|
|
383
|
+ Dealer int64 `gorm:"column:dealer" json:"dealer"`
|
|
384
|
+ Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
|
|
385
|
+ IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
|
|
386
|
+ SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
|
|
387
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
|
|
388
|
+ GoodName string `gorm:"column:good_name" json:"good_name" form:"good_name"`
|
|
389
|
+ SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
|
|
390
|
+ MinNumber int64 `gorm:"column:min_number" json:"min_number" form:"min_number"`
|
|
391
|
+ PackingPrice float64 `gorm:"column:packing_price" json:"packing_price" form:"packing_price"`
|
|
392
|
+ MinUnit string `gorm:"column:min_unit" json:"min_unit" form:"min_unit"`
|
360
|
393
|
}
|