dept.go 486 B

12345678910
  1. package model
  2. type Dept struct {
  3. ParentId int `json:"parentId" gorm:""` //上级部门
  4. DeptPath string `json:"deptPath" gorm:"size:255;" swaggerignore:"true"` //
  5. DeptName string `json:"deptName" gorm:"size:128;"` //部门名称
  6. Sort int `json:"sort" gorm:"size:4;"` //排序
  7. Status int `json:"status" gorm:"size:4;"` //状态 1-停用 2-正常
  8. }