hongze 6 月之前
父节点
当前提交
ec0b13c632
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      models/system/sys_department.go

+ 1 - 1
models/system/sys_department.go

@@ -10,7 +10,7 @@ type SysDepartmentAddReq struct {
 }
 
 type SysDepartment struct {
-	DepartmentId   int       `orm:"column(department_id);pk" description:"部门Id"`
+	DepartmentId   int       `gorm:"primaryKey;" description:"部门Id"`
 	DepartmentName string    `description:"部门名称"`
 	Sort           int       `description:"排序"`
 	CreateTime     time.Time `description:"创建时间"`