You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
981 B

9 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // Log is the golang structure for table log.
  9. type Log struct {
  10. Id uint `json:"id" ` //
  11. CreatedAt *gtime.Time `json:"created_at" ` // 创建时间
  12. UpdatedAt *gtime.Time `json:"updated_at" ` // 更新时间
  13. Type string `json:"type" ` // 日志类别
  14. Title string `json:"title" ` // 日志说明
  15. Error string `json:"error" ` // 错误信息
  16. SendStatus uint `json:"send_status" ` // 发送状态 | 处理状态
  17. IsView uint `json:"is_view" ` // 已读
  18. ViewAt *gtime.Time `json:"view_at" ` // 访问时间
  19. UserId uint `json:"user_id" ` // 操作员ID
  20. }