fonchain-artistinfo/cmd/model/old/bank.go

14 lines
353 B
Go
Raw Permalink Normal View History

2023-02-28 15:27:00 +00:00
package old
import "github.com/fonchain/fonchain-artistinfo/cmd/model"
2023-01-18 09:03:15 +00:00
2023-02-15 01:10:11 +00:00
// User 用户模型
2023-01-18 09:03:15 +00:00
type Bank struct {
2023-02-28 15:27:00 +00:00
model.Model
2023-02-15 01:10:11 +00:00
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"`
}