2023-06-19 01:53:35 +00:00
|
|
|
package gmodel
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// fs_department 部门表
|
|
|
|
type FsDepartment struct {
|
2023-06-19 10:27:31 +00:00
|
|
|
Id int64 `gorm:"primary_key;default:0;auto_increment;" 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
|
2023-06-16 11:04:13 +00:00
|
|
|
}
|
2023-07-20 02:13:18 +00:00
|
|
|
type FsDepartmentModel struct {
|
|
|
|
db *gorm.DB
|
|
|
|
name string
|
|
|
|
}
|
2023-06-16 11:04:13 +00:00
|
|
|
|
2023-07-20 02:13:18 +00:00
|
|
|
func NewFsDepartmentModel(db *gorm.DB) *FsDepartmentModel {
|
|
|
|
return &FsDepartmentModel{db: db, name: "fs_department"}
|
|
|
|
}
|