fusenapi/model/gmodel/fs_department_gen.go
laodaming c5ecca3da2 fix
2023-06-19 09:53:35 +08:00

18 lines
613 B
Go

package gmodel
import (
"gorm.io/gorm"
)
// fs_department 部门表
type FsDepartment struct {
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
Name *string `gorm:"default:'';" json:"name"` // 部门名称
Status *int64 `gorm:"default:0;" json:"status"` // 状态 1正常0停用
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
ParentId *int64 `gorm:"default:0;" json:"parent_id"` // 父级id
}
type FsDepartmentModel struct{ db *gorm.DB }
func NewFsDepartmentModel(db *gorm.DB) *FsDepartmentModel { return &FsDepartmentModel{db} }