|
@@ -6,7 +6,7 @@ import (
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
)
|
|
|
|
|
|
-type MatImage struct {
|
|
|
+type MatImage1 struct {
|
|
|
Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
|
UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId,omitempty"`
|
|
|
Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
|
|
@@ -25,3 +25,58 @@ type MatImage struct {
|
|
|
Categories []string `bson:"categories,omitempty" json:"categories"`
|
|
|
CusNum string `bson:"cusNum,omitempty" json:"cusNum,omitempty"`
|
|
|
}
|
|
|
+
|
|
|
+type MatImage struct {
|
|
|
+ Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
|
+ UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId,omitempty"`
|
|
|
+ Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
|
|
|
+ RawImage *OssType `bson:"rawImage,omitempty" json:"rawImage"`
|
|
|
+
|
|
|
+
|
|
|
+ CusNum string `bson:"cusNum,omitempty" json:"cusNum"`
|
|
|
+ From string `bson:"from,omitempty" json:"from"`
|
|
|
+ TypeCategory string `bson:"typeCategory,omitempty" json:"typeCategory"`
|
|
|
+ TaxNameCN string `bson:"taxNameCn,omitempty" json:"taxNameCn"`
|
|
|
+ CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
|
|
|
+ Categories []string `bson:"categories,omitempty" json:"categories"`
|
|
|
+ BaseCloth string `bson:"baseCloth,omitempty" json:"baseCloth"`
|
|
|
+ SampleNumber string `bson:"sampleNumber,omitempty" json:"sampleNumber"`
|
|
|
+ NameCN string `bson:"nameCn,omitempty" json:"nameCn"`
|
|
|
+ ProductSeries string `bson:"productSeries,omitempty" json:"productSeries"`
|
|
|
+ SurfaceProcess string `bson:"surfaceProcess,omitempty" json:"surfaceProcess"`
|
|
|
+ CatalogNumber string `bson:"catalogNumber,omitempty" json:"catalogNumber"`
|
|
|
+ NameEN string `bson:"nameEn,omitempty" json:"nameEn"`
|
|
|
+ ProductUsage string `bson:"productUsage,omitempty" json:"productUsage"`
|
|
|
+ MnemonicSign string `bson:"mnemonicSign,omitempty" json:"mnemonicSign"`
|
|
|
+ UnitGroup string `bson:"unitGroup,omitempty" json:"unitGroup"`
|
|
|
+ OriginalNumber string `bson:"originalNumber,omitempty" json:"originalNumber"`
|
|
|
+ TaxGoodsNumber string `bson:"taxGoodsNumber,omitempty" json:"taxGoodsNumber"`
|
|
|
+
|
|
|
+
|
|
|
+ SupplierID string `bson:"supplierId,omitempty" json:"supplierId"`
|
|
|
+ MainSupplier string `bson:"mainSupplier,omitempty" json:"mainSupplier"`
|
|
|
+ Price int `bson:"price,omitempty" json:"price"`
|
|
|
+ MainUnit string `bson:"mainUnit,omitempty" json:"mainUnit"`
|
|
|
+ OperationCycle string `bson:"operationCycle,omitempty" json:"operationCycle"`
|
|
|
+
|
|
|
+
|
|
|
+ ExportProperty *bool `bson:"exportProperty,omitempty" json:"exportProperty"`
|
|
|
+ DomesticProperty *bool `bson:"domesticProperty,omitempty" json:"domesticProperty"`
|
|
|
+ InpurchaseProperty *bool `bson:"inpurchaseProperty,omitempty" json:"inpurchaseProperty"`
|
|
|
+ OutsourcedProperty *bool `bson:"outsourcedProperty,omitempty" json:"outsourcedProperty"`
|
|
|
+
|
|
|
+
|
|
|
+ Thickness int `bson:"thickness,omitempty" json:"thickness"`
|
|
|
+ PackageGrossWeight float64 `bson:"packageGrossWeight,omitempty" json:"packageGrossWeight"`
|
|
|
+ PhyWidth int `bson:"phyWidth,omitempty" json:"phyWidth"`
|
|
|
+ ProductVolume float64 `bson:"productVolume,omitempty" json:"productVolume"`
|
|
|
+ PhyHeight int `bson:"phyHeight,omitempty" json:"phyHeight"`
|
|
|
+ SurfaceWeight float64 `bson:"surfaceWeight,omitempty" json:"surfaceWeight"`
|
|
|
+ ProductWeight float64 `bson:"productWeight,omitempty" json:"productWeight"`
|
|
|
+ BackingWeight float64 `bson:"backingWeight,omitempty" json:"backingWeight"`
|
|
|
+ PackageVolume float64 `bson:"packageVolume,omitempty" json:"packageVolume"`
|
|
|
+ Remarks string `bson:"remarks,omitempty" json:"remarks"`
|
|
|
+ FitMarket string `bson:"fitMarket,omitempty" json:"fitMarket"`
|
|
|
+
|
|
|
+ UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
|
|
|
+}
|