sys_user_login.go 311 B

123456789101112131415161718
  1. /*
  2. * @desc:登录日志
  3. * @company:云南奇讯科技有限公司
  4. * @Author: yixiaohu
  5. * @Date: 2022/3/8 11:43
  6. */
  7. package model
  8. // LoginLogParams 登录日志写入参数
  9. type LoginLogParams struct {
  10. Status int
  11. Username string
  12. Ip string
  13. UserAgent string
  14. Msg string
  15. Module string
  16. }