merchant.go 697 B

123456789101112131415161718
  1. package merchant
  2. import "time"
  3. // Merchant 商户信息结构体
  4. type Merchant struct {
  5. ID int `gorm:"column:id;primary_key;comment:商户ID"`
  6. MerchantID string `gorm:"column:merchant_id;type:varchar(255);comment:外部商户ID"`
  7. MerchantName string `gorm:"column:merchant_name;type:varchar(255);comment:商户名称"`
  8. Enabled bool `gorm:"column:enabled;type:tinyint(1);comment:是否启用"`
  9. CreatedTime time.Time `gorm:"column:created_time;type:datetime;comment:创建时间"`
  10. UpdatedTime time.Time `gorm:"column:updated_time;type:datetime;comment:更新时间"`
  11. }
  12. // TableName 指定表名
  13. func (Merchant) TableName() string {
  14. return "merchants"
  15. }