feat seller和provider备注改为remark

This commit is contained in:
timerzz 2024-08-27 17:47:45 +08:00
parent 4dda7ac1fa
commit 7bb4399844
2 changed files with 3 additions and 1 deletions

View File

@ -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 {

View File

@ -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 {