fonchain-approval-fork/pkg/model/financial_form.go
2023-04-24 19:04:04 +08:00

14 lines
441 B
Go

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"`
}