| | |
| | | CompanyId int `gorm:"type:int(11);comment:公司id" json:"companyId"` //公司id |
| | | CompanyName string `gorm:"type:varchar(255);comment:公司名称" json:"companyName"` //公司名称 |
| | | InternalNotes string `gorm:"type:varchar(512);comment:内部说明" json:"internalNotes"` //内部说明 |
| | | SelectProduct int `gorm:"type:int(11);comment:可选产品id" json:"selectProduct"` //可选产品id |
| | | SelectProduct string `gorm:"type:varchar(255);comment:可选产品id" json:"selectProduct"` //可选产品id |
| | | SellExplain string `gorm:"type:varchar(512);comment:销售说明" json:"sellExplain"` //销售说明 |
| | | CanBePurchased bool `gorm:"type:int(11);comment:是否可采购" json:"canBePurchased"` //是否可采购 |
| | | CurrencyName string `gorm:"type:varchar(255);comment:币种名称" json:"currencyName"` //币种名称 |