|
@@ -0,0 +1,282 @@
|
|
|
+package model
|
|
|
+
|
|
|
+import (
|
|
|
+ "time"
|
|
|
+
|
|
|
+ "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
+)
|
|
|
+
|
|
|
+
|
|
|
+type PaperBill struct {
|
|
|
+ Id string `bson:"id,omitempty" json:"id"`
|
|
|
+
|
|
|
+ Name string `bson:"name,omitempty" json:"name"`
|
|
|
+
|
|
|
+ Norm string `bson:"norm,omitempty" json:"norm"`
|
|
|
+
|
|
|
+
|
|
|
+ Width string `bson:"width,omitempty" json:"width"`
|
|
|
+
|
|
|
+
|
|
|
+ Height string `bson:"height,omitempty" json:"height"`
|
|
|
+
|
|
|
+ Price float64 `bson:"price,omitempty" json:"price"`
|
|
|
+ Price2 float64 `bson:"price2,omitempty" json:"price2"`
|
|
|
+ PriceUnit string `bson:"priceUnit,omitempty" json:"priceUnit"`
|
|
|
+ Price2Unit string `bson:"price2Unit,omitempty" json:"price2Unit"`
|
|
|
+
|
|
|
+
|
|
|
+ OrderCount int `bson:"orderCount,omitempty" json:"orderCount"`
|
|
|
+
|
|
|
+
|
|
|
+ OrderPrice float64 `bson:"orderPrice,omitempty" json:"orderPrice"`
|
|
|
+
|
|
|
+
|
|
|
+ Remark string `bson:"remark,omitempty" json:"remark"`
|
|
|
+
|
|
|
+
|
|
|
+ ConfirmCount int `bson:"confirmCount,omitempty" json:"confirmCount"`
|
|
|
+
|
|
|
+
|
|
|
+ DeliveryTime time.Time `bson:"deliveryTime,omitempty" json:"deliveryTime"`
|
|
|
+}
|
|
|
+
|
|
|
+type PurchaseBill struct {
|
|
|
+ Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
|
+ PackId primitive.ObjectID `bson:"packId,omitempty" json:"packId"`
|
|
|
+ PlanId primitive.ObjectID `bson:"planId,omitempty" json:"planId"`
|
|
|
+ SupplierId primitive.ObjectID `bson:"supplierId,omitempty" json:"supplierId"`
|
|
|
+ UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId"`
|
|
|
+ UserName string `bson:"userName,omitempty" json:"userName"`
|
|
|
+
|
|
|
+ Type string `bson:"type,omitempty" json:"type"`
|
|
|
+
|
|
|
+
|
|
|
+ Status string `bson:"status,omitempty" json:"status"`
|
|
|
+ Reviewed int `bson:"reviewed,omitempty" json:"reviewed"`
|
|
|
+ SignUsers []primitive.ObjectID `bson:"signUsers,omitempty" json:"signUsers"`
|
|
|
+ CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
|
|
|
+ UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
|
|
|
+ CompleteTime time.Time `bson:"completeTime,omitempty" json:"completeTime"`
|
|
|
+
|
|
|
+
|
|
|
+ Supplier string `bson:"supplier,omitempty" json:"supplier"`
|
|
|
+
|
|
|
+
|
|
|
+ SendTo string `bson:"sendTo,omitempty" json:"sendTo"`
|
|
|
+
|
|
|
+
|
|
|
+ ProductName string `bson:"productName,omitempty" json:"productName"`
|
|
|
+
|
|
|
+
|
|
|
+ Paper []*PaperBill `bson:"papers,omitempty" json:"papers"`
|
|
|
+
|
|
|
+
|
|
|
+ SerialNumber string `bson:"serialNumber,omitempty" json:"serialNumber"`
|
|
|
+
|
|
|
+ Remark string `bson:"remark,omitempty" json:"remark"`
|
|
|
+
|
|
|
+
|
|
|
+ BillType string `bson:"billType,omitempty" json:"billType"`
|
|
|
+
|
|
|
+
|
|
|
+ IsSend bool `bson:"isSend,omitempty" json:"isSend"`
|
|
|
+ SendTime time.Time `bson:"sendTime,omitempty" json:"sendTime"`
|
|
|
+
|
|
|
+
|
|
|
+ IsAck *bool `bson:"isAck,omitempty" json:"isAck"`
|
|
|
+ AckTime time.Time `bson:"ackTime,omitempty" json:"ackTime"`
|
|
|
+
|
|
|
+ CompProduceName string `bson:"compProduceName,omitempty" json:"compProduceName"`
|
|
|
+
|
|
|
+ SupplierRemark string `bson:"supplierRemark,omitempty" json:"supplierRemark"`
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+type ProduceBillData struct {
|
|
|
+ Id string `bson:"id,omitempty" json:"id"`
|
|
|
+
|
|
|
+ Name string `bson:"name,omitempty" json:"name"`
|
|
|
+
|
|
|
+
|
|
|
+ Norm string `bson:"norm,omitempty" json:"norm"`
|
|
|
+
|
|
|
+
|
|
|
+ Price float64 `bson:"price,omitempty" json:"price"`
|
|
|
+
|
|
|
+ Price2 float64 `bson:"price2,omitempty" json:"price2"`
|
|
|
+
|
|
|
+
|
|
|
+ OrderCount int `bson:"orderCount,omitempty" json:"orderCount"`
|
|
|
+
|
|
|
+
|
|
|
+ OrderPrice float64 `bson:"orderPrice,omitempty" json:"orderPrice"`
|
|
|
+
|
|
|
+
|
|
|
+ ConfirmCount int `bson:"confirmCount,omitempty" json:"confirmCount"`
|
|
|
+
|
|
|
+
|
|
|
+ PaperCount int `bson:"paperCount,omitempty" json:"paperCount"`
|
|
|
+
|
|
|
+
|
|
|
+ Remark string `bson:"remark,omitempty" json:"remark"`
|
|
|
+
|
|
|
+
|
|
|
+ Paper string `bson:"paper,omitempty" json:"paper"`
|
|
|
+
|
|
|
+
|
|
|
+ PaperSize string `bson:"paperSize,omitempty" json:"paperSize"`
|
|
|
+
|
|
|
+
|
|
|
+ PrintSize string `bson:"printSize,omitempty" json:"printSize"`
|
|
|
+
|
|
|
+
|
|
|
+ DeliveryTime time.Time `bson:"deliveryTime,omitempty" json:"deliveryTime"`
|
|
|
+
|
|
|
+ Unit string `bson:"unit,omitempty" json:"unit"`
|
|
|
+ Unit2 string `bson:"unit2,omitempty" json:"unit2"`
|
|
|
+}
|
|
|
+
|
|
|
+type ProduceBill struct {
|
|
|
+ Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
|
+ PackId primitive.ObjectID `bson:"packId,omitempty" json:"packId"`
|
|
|
+ PlanId primitive.ObjectID `bson:"planId,omitempty" json:"planId"`
|
|
|
+ SupplierId primitive.ObjectID `bson:"supplierId,omitempty" json:"supplierId"`
|
|
|
+ UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId"`
|
|
|
+ UserName string `bson:"userName,omitempty" json:"userName"`
|
|
|
+
|
|
|
+
|
|
|
+ Type string `bson:"type,omitempty" json:"type"`
|
|
|
+
|
|
|
+
|
|
|
+ Status string `bson:"status,omitempty" json:"status"`
|
|
|
+ Reviewed int `bson:"reviewed,omitempty" json:"reviewed"`
|
|
|
+ SignUsers []primitive.ObjectID `bson:"signUsers,omitempty" json:"signUsers"`
|
|
|
+ CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
|
|
|
+ UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
|
|
|
+ CompleteTime time.Time `bson:"completeTime,omitempty" json:"completeTime"`
|
|
|
+
|
|
|
+
|
|
|
+ Supplier string `bson:"supplier,omitempty" json:"supplier"`
|
|
|
+
|
|
|
+
|
|
|
+ SendTo string `bson:"sendTo,omitempty" json:"sendTo"`
|
|
|
+
|
|
|
+
|
|
|
+ ProductName string `bson:"productName,omitempty" json:"productName"`
|
|
|
+
|
|
|
+
|
|
|
+ Produces []*ProduceBillData `bson:"produces,omitempty" json:"produces"`
|
|
|
+
|
|
|
+
|
|
|
+ SerialNumber string `bson:"serialNumber,omitempty" json:"serialNumber"`
|
|
|
+
|
|
|
+
|
|
|
+ Remark string `bson:"remark,omitempty" json:"remark"`
|
|
|
+
|
|
|
+ IsPrint bool `bson:"isPrint,omitempty" json:"isPrint"`
|
|
|
+ IsLam bool `bson:"isLam,omitempty" json:"isLam"`
|
|
|
+
|
|
|
+ IsPaper bool `bson:"isPaper,omitempty" json:"isPaper"`
|
|
|
+
|
|
|
+
|
|
|
+ BillType string `bson:"billType,omitempty" json:"billType"`
|
|
|
+
|
|
|
+
|
|
|
+ IsSend bool `bson:"isSend,omitempty" json:"isSend"`
|
|
|
+ SendTime time.Time `bson:"sendTime,omitempty" json:"sendTime"`
|
|
|
+
|
|
|
+ IsAck *bool `bson:"isAck,omitempty" json:"isAck"`
|
|
|
+ AckTime time.Time `bson:"ackTime,omitempty" json:"ackTime"`
|
|
|
+
|
|
|
+ CompProduceName string `bson:"compProduceName,omitempty" json:"compProduceName"`
|
|
|
+
|
|
|
+ SupplierRemark string `bson:"supplierRemark,omitempty" json:"supplierRemark"`
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+type ProductBill struct {
|
|
|
+ Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
|
+ PackId primitive.ObjectID `bson:"packId,omitempty" json:"packId"`
|
|
|
+ PlanId primitive.ObjectID `bson:"planId,omitempty" json:"planId"`
|
|
|
+ SupplierId primitive.ObjectID `bson:"supplierId,omitempty" json:"supplierId"`
|
|
|
+ UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId"`
|
|
|
+ UserName string `bson:"userName,omitempty" json:"userName"`
|
|
|
+
|
|
|
+
|
|
|
+ Type string `bson:"type,omitempty" json:"type"`
|
|
|
+
|
|
|
+
|
|
|
+ Status string `bson:"status,omitempty" json:"status"`
|
|
|
+ Reviewed int `bson:"reviewed,omitempty" json:"reviewed"`
|
|
|
+ SignUsers []primitive.ObjectID `bson:"signUsers,omitempty" json:"signUsers"`
|
|
|
+ CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
|
|
|
+ UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
|
|
|
+ CompleteTime time.Time `bson:"completeTime,omitempty" json:"completeTime"`
|
|
|
+
|
|
|
+
|
|
|
+ Supplier string `bson:"supplier,omitempty" json:"supplier"`
|
|
|
+
|
|
|
+
|
|
|
+ SendTo string `bson:"sendTo,omitempty" json:"sendTo"`
|
|
|
+
|
|
|
+
|
|
|
+ ProductName string `bson:"productName,omitempty" json:"productName"`
|
|
|
+
|
|
|
+
|
|
|
+ Products []*ProductBillData `bson:"products,omitempty" json:"products"`
|
|
|
+
|
|
|
+
|
|
|
+ SerialNumber string `bson:"serialNumber,omitempty" json:"serialNumber"`
|
|
|
+
|
|
|
+
|
|
|
+ Remark string `bson:"remark,omitempty" json:"remark"`
|
|
|
+
|
|
|
+
|
|
|
+ BillType string `bson:"billType,omitempty" json:"billType"`
|
|
|
+
|
|
|
+
|
|
|
+ IsSend bool `bson:"isSend,omitempty" json:"isSend"`
|
|
|
+ SendTime time.Time `bson:"sendTime,omitempty" json:"sendTime"`
|
|
|
+
|
|
|
+ IsAck *bool `bson:"isAck,omitempty" json:"isAck"`
|
|
|
+ AckTime time.Time `bson:"ackTime,omitempty" json:"ackTime"`
|
|
|
+
|
|
|
+ CompProduceName string `bson:"compProduceName,omitempty" json:"compProduceName"`
|
|
|
+
|
|
|
+ SupplierRemark string `bson:"supplierRemark,omitempty" json:"supplierRemark"`
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+type ProductBillData struct {
|
|
|
+ Id string `bson:"id,omitempty" json:"id"`
|
|
|
+
|
|
|
+ Name string `bson:"name,omitempty" json:"name"`
|
|
|
+
|
|
|
+
|
|
|
+ Norm string `bson:"norm,omitempty" json:"norm"`
|
|
|
+
|
|
|
+
|
|
|
+ Size string `bson:"size,omitempty" json:"size"`
|
|
|
+
|
|
|
+
|
|
|
+ Price float64 `bson:"price,omitempty" json:"price"`
|
|
|
+
|
|
|
+
|
|
|
+ OrderCount int `bson:"orderCount,omitempty" json:"orderCount"`
|
|
|
+
|
|
|
+
|
|
|
+ OrderPrice float64 `bson:"orderPrice,omitempty" json:"orderPrice"`
|
|
|
+
|
|
|
+
|
|
|
+ Remark string `bson:"remark,omitempty" json:"remark"`
|
|
|
+
|
|
|
+
|
|
|
+ DeliveryTime time.Time `bson:"deliveryTime,omitempty" json:"deliveryTime"`
|
|
|
+
|
|
|
+
|
|
|
+ ConfirmCount int `bson:"confirmCount,omitempty" json:"confirmCount"`
|
|
|
+
|
|
|
+
|
|
|
+ Unit string `bson:"unit,omitempty" json:"unit"`
|
|
|
+}
|