123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557 |
- package models
-
- type Manufacturer struct {
- ID int64 `gorm:"column:id" json:"id"`
- ManufacturerName string `gorm:"column:manufacturer_name" json:"manufacturer_name"`
- Contact string `gorm:"column:contact" json:"contact"`
- ContactPhone string `gorm:"column:contact_phone" json:"contact_phone"`
- PlatformNumber string `gorm:"column:platform_number" json:"platform_number"`
- Email string `gorm:"column:email" json:"email"`
- ContactAddress string `gorm:"column:contact_address" json:"contact_address"`
- Remark string `gorm:"column:remark" json:"remark"`
- Creater int64 `gorm:"column:creater" json:"creater"`
- Modifier int64 `gorm:"column:modifier" json:"modifier"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Status int64 `gorm:"column:status" json:"status"`
- ManufacturerCode string `gorm:"column:manufacturer_code" json:"manufacturer_code"`
- PinYin string `gorm:"column:pinyin" json:"pinyin"`
- WuBi string `gorm:"column:wubi" json:"wubi"`
- }
-
- func (Manufacturer) TableName() string {
- return "xt_manufacturer"
- }
-
- type Dealer struct {
- ID int64 `gorm:"column:id" json:"id"`
- DealerName string `gorm:"column:dealer_name" json:"dealer_name"`
- Contact string `gorm:"column:contact" json:"contact"`
- ContactPhone string `gorm:"column:contact_phone" json:"contact_phone"`
- PlatformNumber string `gorm:"column:platform_number" json:"platform_number"`
- Email string `gorm:"column:email" json:"email"`
- ContactAddress string `gorm:"column:contact_address" json:"contact_address"`
- Remark string `gorm:"column:remark" json:"remark"`
- Creater int64 `gorm:"column:creater" json:"creater"`
- Modifier int64 `gorm:"column:modifier" json:"modifier"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Status int64 `gorm:"column:status" json:"status"`
- DealerCode string `gorm:"column:dealer_code" json:"dealer_code"`
- PinYin string `gorm:"column:pinyin" json:"pinyin"`
- WuBi string `gorm:"column:wubi" json:"wubi"`
- }
-
- func (Dealer) TableName() string {
- return "xt_dealer"
- }
-
- type Warehousing struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehousingOrder string `gorm:"column:warehousing_order" json:"warehousing_order"`
- OperationTime int64 `gorm:"column:operation_time" json:"operation_time"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Creater int64 `gorm:"column:creater" json:"creater"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Modifier int64 `gorm:"column:modifier" json:"modifier"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- WarehousingTime int64 `gorm:"column:warehousing_time" json:"warehousing_time"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- Manufacturers Manufacturer `gorm:"ForeignKey:ID;AssociationForeignKey:Manufacturer" json:"Manufacturer"`
- Dealers Dealer `gorm:"ForeignKey:ID;AssociationForeignKey:Dealer" json:"Dealer"`
- Type int64 `gorm:"column:type" json:"type"`
- }
-
- func (Warehousing) TableName() string {
- return "xt_warehouse"
- }
-
- type StWarehousingInfo struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehousingId int64 `gorm:"column:warehousing_id" json:"warehousing_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- Number string `gorm:"column:number" json:"number"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- WarehousingCount int64 `gorm:"column:warehousing_count" json:"warehousing_count"`
- WarehousingUnit string `gorm:"column:warehousing_unit" json:"warehousing_unit"`
- Price float64 `gorm:"column:price" json:"price"`
- TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- Remark string `gorm:"column:remark" json:"remark"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- IsReturn int64 `gorm:"column:is_return" json:"is_return"`
- StockCount int64 `gorm:"column:stock_count" json:"stock_count" form:"stock_count"`
- WarehousingOrder string `gorm:"column:warehousing_order" json:"warehousing_order"`
- Type int64 `gorm:"column:type" json:"type"`
- GoodName string `json:"good_name"`
- PackingUnit string `json:"packing_unit"`
- TotalCount int64 `json:"total_count"`
- SpecificationName string `json:"specification_name"`
- LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
- }
-
- func (StWarehousingInfo) TableName() string {
- return "xt_warehouse_info"
- }
-
- type WarehousingInfo struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehousingId int64 `gorm:"column:warehousing_id" json:"warehousing_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- Number string `gorm:"column:number" json:"number"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- WarehousingCount int64 `gorm:"column:warehousing_count" json:"warehousing_count"`
- WarehousingUnit string `gorm:"column:warehousing_unit" json:"warehousing_unit"`
- Price float64 `gorm:"column:price" json:"price"`
- TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- Remark string `gorm:"column:remark" json:"remark"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- IsReturn int64 `gorm:"column:is_return" json:"is_return"`
- StockCount int64 `gorm:"column:stock_count" json:"stock_count" form:"stock_count"`
- Warehousing Warehousing `ForeignKey:WarehousingId json:"warehouse"`
- WarehousingOrder string `gorm:"column:warehousing_order" json:"warehousing_order"`
- GoodInfo GoodInfo `gorm:"ForeignKey:ID;AssociationForeignKey:GoodId" `
- Type int64 `gorm:"column:type" json:"type"`
- LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
- }
-
- func (WarehousingInfo) TableName() string {
- return "xt_warehouse_info"
- }
-
- type VmWarehousingInfo struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehousingId int64 `gorm:"column:warehousing_id" json:"warehousing_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- Number string `gorm:"column:number" json:"number"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- WarehousingCount int64 `gorm:"column:warehousing_count" json:"warehousing_count"`
- WarehousingUnit string `gorm:"column:warehousing_unit" json:"warehousing_unit"`
- Price float64 `gorm:"column:price" json:"price"`
- BuyPrice float64 `gorm:"column:buy_price" json:"buy_price" form:"buy_price"`
- TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- Remark string `gorm:"column:remark" json:"remark"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- IsReturn int64 `gorm:"column:is_return" json:"is_return"`
- StockCount int64 `gorm:"column:stock_count" json:"stock_count" form:"stock_count"`
- Warehousing Warehousing `ForeignKey:WarehousingId json:"warehouse"`
- WarehousingOrder string `gorm:"column:warehousing_order" json:"warehousing_order"`
- GoodInfo GoodInfo `gorm:"ForeignKey:ID;AssociationForeignKey:GoodId" `
- Type int64 `gorm:"column:type" json:"type"`
- GoodName string `gorm:"column:good_name" json:"good_name"`
- SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
- MinNumber int64 `gorm:"column:min_number" json:"min_number" form:"min_number"`
- PackingUnit string `gorm:"column:packing_unit" json:"packing_unit" form:"packing_unit"`
- Count int64 `gorm:json:"count"`
- }
-
- type WarehouseOut struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
- OperationTime int64 `gorm:"column:operation_time" json:"operation_time"`
- Creater int64 `gorm:"column:creater" json:"creater"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Modifier int64 `gorm:"column:modifier" json:"modifier"`
- Remark string `gorm:"column:remark" json:"remark"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- WarehouseOutTime int64 `gorm:"column:warehouse_out_time" json:"warehouse_out_time"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- Manufacturers Manufacturer `gorm:"ForeignKey:ID;AssociationForeignKey:Manufacturer" json:"Manufacturer"`
- Dealers Dealer `gorm:"ForeignKey:ID;AssociationForeignKey:Dealer" json:"Dealer"`
- Type int64 `gorm:"column:type" json:"type"`
- IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
- }
-
- func (WarehouseOut) TableName() string {
- return "xt_warehouse_out"
- }
-
- type WarehouseOutInfo struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
- WarehouseInfotId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- WarehousingOutTarget int64 `gorm:"column:warehousing_out_target" json:"warehousing_out_target"`
- Count int64 `gorm:"column:count" json:"count"`
- Price float64 `gorm:"column:price" json:"price"`
- TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Remark string `gorm:"column:remark" json:"remark"`
- IsCancel int64 `gorm:"column:is_cancel" json:"is_cancel"`
- WarehouseOut WarehouseOut `ForeignKey:WarehouseOutId json:"WarehouseOut"`
- WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
- GoodInfo GoodInfo `gorm:"ForeignKey:ID;AssociationForeignKey:GoodId" `
- Type int64 `gorm:"column:type" json:"type"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
- SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
- PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
- Number string `gorm:"column:number" json:"number" form:"number"`
- LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
- ConsumableType int64 `gorm:"column:consumable_type" json:"consumable_type" form:"consumable_type"`
- }
-
- func (WarehouseOutInfo) TableName() string {
- return "xt_warehouse_out_info"
- }
-
- type SalesReturn struct {
- ID int64 `gorm:"column:id" json:"id"`
- OrderNumber string `gorm:"column:order_number" json:"order_number"`
- OperaTime int64 `gorm:"column:opera_time" json:"opera_time"`
- Total int64 `gorm:"column:total" json:"total"`
- Creater int64 `gorm:"column:creater" json:"creater"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- ReturnTime int64 `gorm:"column:return_time" json:"return_time"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Type int64 `gorm:"column:type" json:"type"`
- }
-
- func (SalesReturn) TableName() string {
- return "xt_sales_return"
- }
-
- type SalesReturnInfo struct {
- ID int64 `gorm:"column:id" json:"id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- SalesReturnId int64 `gorm:"column:sales_return_id" json:"sales_return_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- Count int64 `gorm:"column:count" json:"count"`
- Price float64 `gorm:"column:price" json:"price"`
- Total float64 `gorm:"column:total" json:"total"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- OrderNumber string `gorm:"column:order_number" json:"order_number"`
- Type int64 `gorm:"column:type" json:"type"`
- SalesReturn SalesReturn `ForeignKey:SalesReturnId json:"SalesReturn"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- GoodInfo GoodInfo `gorm:"ForeignKey:ID;AssociationForeignKey:GoodId" `
- }
-
- func (SalesReturnInfo) TableName() string {
- return "xt_sales_return_info"
- }
-
- type VmCancelStockInfo struct {
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- Count int64 `gorm:"column:count" json:"count"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- }
-
- type CancelStock struct {
- ID int64 `gorm:"column:id" json:"id"`
- OrderNumber string `gorm:"column:order_number" json:"order_number"`
- OperaTime int64 `gorm:"column:opera_time" json:"opera_time"`
- Total int64 `gorm:"column:total" json:"total"`
- Creater int64 `gorm:"column:creater" json:"creater"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- ReturnTime int64 `gorm:"column:return_time" json:"return_time"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- Type int64 `gorm:"column:type" json:"type"`
- CancelStockInfo []*XtCancelStockInfo
- }
-
- func (CancelStock) TableName() string {
- return "xt_cancel_stock"
- }
-
- type WarehousingGoodInfo struct {
- ID int64 `gorm:"column:id" json:"id"`
- GoodCode string `gorm:"column:good_code" json:"good_code"`
- SpecificationName string `gorm:"column:specification_name" json:"specification_name"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- GoodUnit int64 `gorm:"column:good_unit" json:"good_unit"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Status int64 `gorm:"column:status" json:"status"`
- GoodsType GoodsType `gorm:"ForeignKey:ID;AssociationForeignKey:GoodTypeId" json:"type"`
- Manufacturers Manufacturer `gorm:"ForeignKey:Manufacturer;AssociationForeignKey:ID" json:"manufacturers"`
- Dealers Dealer `gorm:"ForeignKey:Dealer;AssociationForeignKey:ID" json:"dealers"`
- BuyPrice float64 `gorm:"column:buy_price" json:"buy_price"`
- Total float64 `gorm:"column:total" json:"total" form:"total"`
- }
-
- func (WarehousingGoodInfo) TableName() string {
- return "xt_good_information"
- }
-
- type WarehousingInfoConfig struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehousingId int64 `gorm:"column:warehousing_id" json:"warehousing_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- WarehousingGoodInfo WarehousingGoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"info"`
- }
-
- func (WarehousingInfoConfig) TableName() string {
- return "xt_warehouse_info"
- }
-
- type WarehousingOutInfoConfig struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- WarehousingGoodInfo WarehousingGoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"info"`
- }
-
- func (WarehousingOutInfoConfig) TableName() string {
- return "xt_warehouse_out_info"
- }
-
- type AutomaticReduceDetail struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
- WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
- PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- RecordTime int64 `gorm:"column:record_time" json:"record_time"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- GoodInfo GoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"info"`
- GoodsType GoodsType `gorm:"ForeignKey:GoodTypeId;AssociationForeignKey:ID" json:"type"`
- Patients Patients `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"user"`
- Count int64 `gorm:"column:count" json:"count"`
- Type int64 `gorm:"column:type" json:"type"`
- WarehouseOutInfo []*WarehouseOutInfo `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"warehouseOutInfo"`
- }
-
- func (AutomaticReduceDetail) TableName() string {
- return "xt_automatic_reduce_detail"
- }
-
- type VmWarehouseOutInfo struct {
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- Count int64 `gorm:"column:count" json:"count"`
- Remark string `gorm:"column:remark" json:"remark"`
- Price float64 `gorm:"column:price" json:"price"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- }
-
- type VmWarehouseInfo struct {
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- Count int64 `gorm:"column:count" json:"count"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- StockCount int64 `gorm:"column:stock_count" json:"stock_count"`
- }
-
- type WarehouseOutInfoOne struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
- WarehouseInfotId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- WarehousingOutTarget int64 `gorm:"column:warehousing_out_target" json:"warehousing_out_target"`
- Count int64 `gorm:"column:count" json:"count"`
- Price float64 `gorm:"column:price" json:"price"`
- TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Remark string `gorm:"column:remark" json:"remark"`
- IsCancel int64 `gorm:"column:is_cancel" json:"is_cancel"`
- WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
- Type int64 `gorm:"column:type" json:"type"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
- SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
- PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
- GoodName string `gorm:"column:good_name" json:"good_name" form:"good_name"`
- SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
- MinNumber int64 `gorm:"column:min_number" json:"min_number" form:"min_number"`
- PackingPrice float64 `gorm:"column:packing_price" json:"packing_price" form:"packing_price"`
- MinUnit string `gorm:"column:min_unit" json:"min_unit" form:"min_unit"`
- Number string `gorm:"column:number" json:"number" form:"number"`
- PackingUnit string `gorm:"column:packing_unit" json:"packing_unit" form:"packing_unit"`
- LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
- }
-
- type WarehouseOutInfoTwo struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
- WarehouseInfotId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- WarehousingOutTarget int64 `gorm:"column:warehousing_out_target" json:"warehousing_out_target"`
- Count int64 `gorm:"column:count" json:"count"`
- Price float64 `gorm:"column:price" json:"price"`
- TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Remark string `gorm:"column:remark" json:"remark"`
- IsCancel int64 `gorm:"column:is_cancel" json:"is_cancel"`
- WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
- Type int64 `gorm:"column:type" json:"type"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
- SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
- PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
- GoodName string `gorm:"column:good_name" json:"good_name" form:"good_name"`
- SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
- MinNumber int64 `gorm:"column:min_number" json:"min_number" form:"min_number"`
- PackingPrice float64 `gorm:"column:packing_price" json:"packing_price" form:"packing_price"`
- MinUnit string `gorm:"column:min_unit" json:"min_unit" form:"min_unit"`
- Number string `gorm:"column:number" json:"number" form:"number"`
- PackingUnit string `gorm:"column:packing_unit" json:"packing_unit" form:"packing_unit"`
- StWarehousingInfo []*StWarehousingInfo `gorm:"ForeignKey:good_id;AssociationForeignKey:GoodId" json:"xt_warehouse_info"`
- }
-
- type WarehouseOutInfoSix struct {
- ID int64 `gorm:"column:id" json:"id"`
- WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
- WarehouseInfotId int64 `gorm:"column:warehouse_info_id" json:"warehouse_info_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- WarehousingOutTarget int64 `gorm:"column:warehousing_out_target" json:"warehousing_out_target"`
- Count int64 `gorm:"column:count" json:"count"`
- Price float64 `gorm:"column:price" json:"price"`
- TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Remark string `gorm:"column:remark" json:"remark"`
- IsCancel int64 `gorm:"column:is_cancel" json:"is_cancel"`
- WarehouseOut WarehouseOut `ForeignKey:WarehouseOutId json:"WarehouseOut"`
- WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
- Type int64 `gorm:"column:type" json:"type"`
- Dealer int64 `gorm:"column:dealer" json:"dealer"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer"`
- IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
- SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
- PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
- Number string `gorm:"column:number" json:"number" form:"number"`
- LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
- ConsumableType int64 `gorm:"column:consumable_type" json:"consumable_type" form:"consumable_type"`
- GoodInfo GoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"info"`
- }
-
- func (WarehouseOutInfoSix) TableName() string {
- return "xt_warehouse_out_info"
- }
-
- type VmStockFlow struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- WarehousingId int64 `gorm:"column:warehousing_id" json:"warehousing_id" form:"warehousing_id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id" form:"good_id"`
- Number string `gorm:"column:number" json:"number" form:"number"`
- LicenseNumber string `gorm:"column:license_number" json:"license_number" form:"license_number"`
- Count int64 `gorm:"column:count" json:"count" form:"count"`
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
- PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
- SystemTime int64 `gorm:"column:system_time" json:"system_time" form:"system_time"`
- ConsumableType int64 `gorm:"column:consumable_type" json:"consumable_type" form:"consumable_type"`
- IsSys int64 `gorm:"column:is_sys" json:"is_sys" form:"is_sys"`
- WarehousingOrder string `gorm:"column:warehousing_order" json:"warehousing_order" form:"warehousing_order"`
- WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id" form:"warehouse_out_id"`
- WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number" form:"warehouse_out_order_number"`
- IsEdit int64 `gorm:"column:is_edit" json:"is_edit" form:"is_edit"`
- CancelStockId int64 `gorm:"column:cancel_stock_id" json:"cancel_stock_id" form:"cancel_stock_id"`
- CancelOrderNumber int64 `gorm:"column:cancel_order_number" json:"cancel_order_number" form:"cancel_order_number"`
- Manufacturer int64 `gorm:"column:manufacturer" json:"manufacturer" form:"manufacturer"`
- Dealer int64 `gorm:"column:dealer" json:"dealer" form:"dealer"`
- Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
- UpdateCreator int64 `gorm:"column:update_creator" json:"update_creator" form:"update_creator"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
- Price float64 `gorm:"column:price" json:"price" form:"price"`
- WarehousingDetailId int64 `gorm:"column:warehousing_detail_id" json:"warehousing_detail_id" form:"warehousing_detail_id"`
- WarehouseOutDetailId int64 `gorm:"column:warehouse_out_detail_id" json:"warehouse_out_detail_id" form:"warehouse_out_detail_id"`
- CancelOutDetailId int64 `gorm:"column:cancel_out_detail_id" json:"cancel_out_detail_id" form:"cancel_out_detail_id"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date" form:"product_date"`
- ExpireDate int64 `gorm:"column:expire_date" json:"expire_date" form:"expire_date"`
- }
-
- func (VmStockFlow) TableName() string {
- return "xt_stock_flow"
- }
-
- type CancelStockInfo struct {
- ID int64 `gorm:"column:id" json:"id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id"`
- CancelStockId int64 `gorm:"column:cancel_stock_id" json:"cancel_stock_id"`
- GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
- Count int64 `gorm:"column:count" json:"count"`
- Price float64 `gorm:"column:price" json:"price"`
- Total float64 `gorm:"column:total" json:"total"`
- ProductDate int64 `gorm:"column:product_date" json:"product_date"`
- ExpiryDate int64 `gorm:"column:expiry_date" json:"expiry_date"`
- Ctime int64 `gorm:"column:ctime" json:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime"`
- Status int64 `gorm:"column:status" json:"status"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- OrderNumber string `gorm:"column:order_number" json:"order_number"`
- Type int64 `gorm:"column:type" json:"type"`
- CancelStock CancelStock `ForeignKey:CancelStockId json:"CancelStock"`
- Dealer string `gorm:"column:dealer" json:"dealer"`
- Manufacturer string `gorm:"column:manufacturer" json:"manufacturer"`
- Number string `gorm:"column:number" json:"number" form:"number"`
- RegisterAccount string `gorm:"column:register_account" json:"register_account" form:"register_account"`
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
- GoodInfo GoodInfo `gorm:"ForeignKey:ID;AssociationForeignKey:GoodId" `
- }
-
- func (CancelStockInfo) TableName() string {
- return "xt_cancel_stock_info"
- }
|