|
@@ -16,7 +16,6 @@ type FinishArtwork struct {
|
|
|
Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
|
Name string `bson:"name,omitempty" json:"name"`
|
|
|
Thumb string `bson:"thumb,omitempty" json:"thumb"`
|
|
|
- Desc string `bson:"desc,omitempty" json:"desc"`
|
|
|
FinishId string `bson:"finishId,omitempty" json:"finishId"`
|
|
|
MeshId string `bson:"meshId,omitempty" json:"meshId"`
|
|
|
MatKey string `bson:"matkey,omitempty" json:"matkey"`
|
|
@@ -49,3 +48,10 @@ type Shape struct {
|
|
|
CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
|
|
|
UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
|
|
|
}
|
|
|
+type Finish struct {
|
|
|
+ Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
|
+ Name string `bson:"name,omitempty" json:"name"`
|
|
|
+ Desc string `bson:"desc,omitempty" json:"desc"`
|
|
|
+ CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
|
|
|
+ UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
|
|
|
+}
|