context.go 241 B

12345678910111213141516
  1. /*
  2. * @desc:context-model
  3. * @company:云南奇讯科技有限公司
  4. * @Author: yixiaohu
  5. * @Date: 2022/3/16 14:45
  6. */
  7. package model
  8. type Context struct {
  9. User *ContextUser // User in context.
  10. }
  11. type ContextUser struct {
  12. *LoginUserRes
  13. }