diff --git a/structs/v2/provider.go b/structs/v2/provider.go index 6a6066e..a1f464d 100644 --- a/structs/v2/provider.go +++ b/structs/v2/provider.go @@ -19,7 +19,7 @@ type Provider struct { //计算过程 CalculateProcess []CalculateProcess `json:"calculateProcess" gorm:"polymorphicType:Kind;polymorphicId:OwnerID;polymorphicValue:provider"` // 备注 - Mark string `json:"mark,omitempty"` + Remark string `json:"remark,omitempty"` } type ProviderOption struct { diff --git a/structs/v2/seller.go b/structs/v2/seller.go index a2cf613..8873a98 100644 --- a/structs/v2/seller.go +++ b/structs/v2/seller.go @@ -19,6 +19,8 @@ type Seller struct { Config SellerOption `gorm:"type:json;serializer:json" json:"config"` //计算过程 CalculateProcess []CalculateProcess `json:"calculateProcess" gorm:"polymorphicType:Kind;polymorphicId:OwnerID;polymorphicValue:seller"` + // 备注 + Remark string `json:"remark,omitempty"` } type SellerOption struct {