fonchain-artistinfo/cmd/model/bank.go

12 lines
289 B
Go
Raw Normal View History

2023-01-18 09:03:15 +00:00
package model
2023-02-15 01:10:11 +00:00
// User 用户模型
2023-01-18 09:03:15 +00:00
type Bank struct {
2023-02-15 01:10:11 +00:00
Model
ID int32 `gorm:"not null"`
UserId int32 `gorm:" not null"`
2023-01-18 09:03:15 +00:00
BankAccount string `gorm:"type:varchar(25) not null"`
BankName string `gorm:"type:varchar(25) not null"`
Enable bool `gorm:"not null"`
}