User.go 414 B

1234567891011121314151617
  1. package User
  2. type User struct {
  3. Id int
  4. T_uuid string //
  5. T_power string // 权限ID
  6. T_name string //
  7. T_user string //
  8. T_pass string //
  9. T_dept int // 部门
  10. T_dept_name string // 部门
  11. T_post int // 岗位
  12. T_post_name string // 岗位
  13. T_State int // 0删除 1 正常
  14. T_dept_leader int // 部门负责人 0-否 1-是
  15. }