|
@@ -279,26 +279,27 @@ func (WarehouseOutInfo) TableName() string {
|
279
|
279
|
}
|
280
|
280
|
|
281
|
281
|
type WarehouseOutInfoNight struct {
|
282
|
|
- ID int64 `gorm:"column:id" json:"id"`
|
283
|
|
- Count int64 `gorm:"column:count" json:"count"`
|
284
|
|
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
|
285
|
|
- SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
|
286
|
|
- PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
|
287
|
|
- ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
288
|
|
- WarehouseInfotId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id"`
|
289
|
|
- IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
|
290
|
|
- Status int64 `gorm:"column:status" json:"status"`
|
291
|
|
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
|
292
|
|
- WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number" form:"warehouse_out_order_number"`
|
293
|
|
- StorehouseId int64 `gorm:"column:storehouse_id" json:"storehouse_id" form:"storehouse_id"`
|
294
|
|
- Price float64 `gorm:"column:price" json:"price" form:"price"`
|
295
|
|
- Dealer int64 `gorm:"column:dealer" json:"dealer" form:"dealer"`
|
296
|
|
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer" form:"manufacturer"`
|
297
|
|
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id" form:"good_type_id"`
|
298
|
|
- ProductDate int64 `gorm:"column:product_date" json:"product_date" form:"product_date"`
|
299
|
|
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date" form:"expiry_date"`
|
300
|
|
- Number string `gorm:"column:number" json:"number" form:"number"`
|
301
|
|
- LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
|
|
282
|
+ ID int64 `gorm:"column:id" json:"id"`
|
|
283
|
+ Count int64 `gorm:"column:count" json:"count"`
|
|
284
|
+ GoodId int64 `gorm:"column:good_id" json:"good_id"`
|
|
285
|
+ SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
|
|
286
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
|
|
287
|
+ ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
|
288
|
+ WarehouseInfotId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id"`
|
|
289
|
+ IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
|
|
290
|
+ Status int64 `gorm:"column:status" json:"status"`
|
|
291
|
+ OrgId int64 `gorm:"column:org_id" json:"org_id"`
|
|
292
|
+ WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number" form:"warehouse_out_order_number"`
|
|
293
|
+ StorehouseId int64 `gorm:"column:storehouse_id" json:"storehouse_id" form:"storehouse_id"`
|
|
294
|
+ Price float64 `gorm:"column:price" json:"price" form:"price"`
|
|
295
|
+ Dealer int64 `gorm:"column:dealer" json:"dealer" form:"dealer"`
|
|
296
|
+ Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer" form:"manufacturer"`
|
|
297
|
+ GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id" form:"good_type_id"`
|
|
298
|
+ ProductDate int64 `gorm:"column:product_date" json:"product_date" form:"product_date"`
|
|
299
|
+ ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date" form:"expiry_date"`
|
|
300
|
+ Number string `gorm:"column:number" json:"number" form:"number"`
|
|
301
|
+ LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
|
|
302
|
+ GoodInfo GoodInformationThirty `gorm:"ForeignKey:ID;AssociationForeignKey:GoodId" `
|
302
|
303
|
}
|
303
|
304
|
|
304
|
305
|
func (WarehouseOutInfoNight) TableName() string {
|
|
@@ -1574,37 +1575,38 @@ func (StartDrugWarehouseInfo) TableName() string {
|
1574
|
1575
|
}
|
1575
|
1576
|
|
1576
|
1577
|
type GoodWarehousingInfo struct {
|
1577
|
|
- ID int64 `gorm:"column:id" json:"id"`
|
1578
|
|
- WarehousingId int64 `gorm:"column:warehousing_id" json:"warehousing_id"`
|
1579
|
|
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
|
1580
|
|
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
|
1581
|
|
- Number string `gorm:"column:number" json:"number"`
|
1582
|
|
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
|
1583
|
|
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
|
1584
|
|
- WarehousingCount int64 `gorm:"column:warehousing_count" json:"warehousing_count"`
|
1585
|
|
- WarehousingUnit string `gorm:"column:warehousing_unit" json:"warehousing_unit"`
|
1586
|
|
- Price float64 `gorm:"column:price" json:"price"`
|
1587
|
|
- TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
|
1588
|
|
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
|
1589
|
|
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
|
1590
|
|
- Remark string `gorm:"column:remark" json:"remark"`
|
1591
|
|
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
|
1592
|
|
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
|
1593
|
|
- Status int64 `gorm:"column:status" json:"status"`
|
1594
|
|
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
|
1595
|
|
- IsReturn int64 `gorm:"column:is_return" json:"is_return"`
|
1596
|
|
- StockCount int64 `gorm:"column:stock_count" json:"stock_count" form:"stock_count"`
|
1597
|
|
- WarehousingOrder string `gorm:"column:warehousing_order" json:"warehousing_order"`
|
1598
|
|
- Type int64 `gorm:"column:type" json:"type"`
|
1599
|
|
- LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
|
1600
|
|
- WarehouseInfoId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id" form:"warehouse_info_id"`
|
1601
|
|
- PackingPrice float64 `gorm:"column:packing_price" json:"packing_price" form:"packing_price"`
|
1602
|
|
- SupplyWarehouseId int64 `gorm:"column:supply_warehouse_id" json:"supply_warehouse_id" form:"supply_warehouse_id"`
|
1603
|
|
- SupplyWarehouseDetailInfo int64 `gorm:"column:supply_warehouse_detail_info" json:"supply_warehouse_detail_info" form:"supply_warehouse_detail_info"`
|
1604
|
|
- StorehouseId int64 `gorm:"column:storehouse_id" json:"storehouse_id" form:"storehouse_id"`
|
1605
|
|
- SecondWarehouseInfoId int64 `gorm:"column:second_warehouse_info_id" json:"second_warehouse_info_id" form:"second_warehouse_info_id"`
|
1606
|
|
- IsCheck int64 `gorm:"column:is_check" json:"is_check" form:"is_check"`
|
1607
|
|
- RegisterNumber string `gorm:"column:register_number" json:"register_number" form:"register_number"`
|
|
1578
|
+ ID int64 `gorm:"column:id" json:"id"`
|
|
1579
|
+ WarehousingId int64 `gorm:"column:warehousing_id" json:"warehousing_id"`
|
|
1580
|
+ GoodId int64 `gorm:"column:good_id" json:"good_id"`
|
|
1581
|
+ GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
|
|
1582
|
+ Number string `gorm:"column:number" json:"number"`
|
|
1583
|
+ ProductDate int64 `gorm:"column:product_date" json:"product_date"`
|
|
1584
|
+ ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
|
|
1585
|
+ WarehousingCount int64 `gorm:"column:warehousing_count" json:"warehousing_count"`
|
|
1586
|
+ WarehousingUnit string `gorm:"column:warehousing_unit" json:"warehousing_unit"`
|
|
1587
|
+ Price float64 `gorm:"column:price" json:"price"`
|
|
1588
|
+ TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
|
|
1589
|
+ Dealer int64 `gorm:"column:dealer" json:"dealer"`
|
|
1590
|
+ Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
|
|
1591
|
+ Remark string `gorm:"column:remark" json:"remark"`
|
|
1592
|
+ Ctime int64 `gorm:"column:ctime" json:"ctime"`
|
|
1593
|
+ Mtime int64 `gorm:"column:mtime" json:"mtime"`
|
|
1594
|
+ Status int64 `gorm:"column:status" json:"status"`
|
|
1595
|
+ OrgId int64 `gorm:"column:org_id" json:"org_id"`
|
|
1596
|
+ IsReturn int64 `gorm:"column:is_return" json:"is_return"`
|
|
1597
|
+ StockCount int64 `gorm:"column:stock_count" json:"stock_count" form:"stock_count"`
|
|
1598
|
+ WarehousingOrder string `gorm:"column:warehousing_order" json:"warehousing_order"`
|
|
1599
|
+ Type int64 `gorm:"column:type" json:"type"`
|
|
1600
|
+ LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
|
|
1601
|
+ WarehouseInfoId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id" form:"warehouse_info_id"`
|
|
1602
|
+ PackingPrice float64 `gorm:"column:packing_price" json:"packing_price" form:"packing_price"`
|
|
1603
|
+ SupplyWarehouseId int64 `gorm:"column:supply_warehouse_id" json:"supply_warehouse_id" form:"supply_warehouse_id"`
|
|
1604
|
+ SupplyWarehouseDetailInfo int64 `gorm:"column:supply_warehouse_detail_info" json:"supply_warehouse_detail_info" form:"supply_warehouse_detail_info"`
|
|
1605
|
+ StorehouseId int64 `gorm:"column:storehouse_id" json:"storehouse_id" form:"storehouse_id"`
|
|
1606
|
+ SecondWarehouseInfoId int64 `gorm:"column:second_warehouse_info_id" json:"second_warehouse_info_id" form:"second_warehouse_info_id"`
|
|
1607
|
+ IsCheck int64 `gorm:"column:is_check" json:"is_check" form:"is_check"`
|
|
1608
|
+ RegisterNumber string `gorm:"column:register_number" json:"register_number" form:"register_number"`
|
|
1609
|
+ GoodInfo GoodInformationThirty `gorm:"ForeignKey:ID;AssociationForeignKey:GoodId" `
|
1608
|
1610
|
}
|
1609
|
1611
|
|
1610
|
1612
|
func (GoodWarehousingInfo) TableName() string {
|