fonchain-approval-fork/pkg/model/financial_form.go

14 lines
441 B
Go
Raw Normal View History

2023-04-24 11:04:04 +00:00
package model
import (
"gorm.io/plugin/soft_delete"
"time"
)
type FinancialFrom struct {
ID uint64 `gorm:"primaryKey;column:id" json:"id"` // ID
DeletedAt soft_delete.DeletedAt `gorm:"column:deleted_at" json:"deletedAt"` // 删除时间
CreatedAt time.Time `gorm:"column:created_at" json:"createdAt"` // 创建时间
UpdatedAt time.Time `gorm:"column:updated_at" json:"updatedAt"`
}