package models import "time" type BankAccount struct { CreatedAt time.Time UpdatedAt time.Time MandateDateSigned time.Time `gorm:"not null" json:"mandate_date_signed"` Bank string `json:"bank_name"` AccountHolderName string `json:"account_holder_name"` IBAN string `gorm:"not null" json:"iban"` BIC string `json:"bic"` MandateReference string `gorm:"not null" json:"mandate_reference"` ID int64 `gorm:"primaryKey"` UserID int64 `json:"user_id"` }