Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessCreateDTO ¶ added in v1.10.4
type AccessCreateDTO struct { Id string `gorm:"column:id;primaryKey" json:"Id" form:"Id" comment:"Id"` UserId string `gorm:"column:user_id" json:"UserId" form:"UserId" comment:"UserId"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Count int `gorm:"column:Count;type:int" json:"Count" form:"Count" comment:"Count"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` }
type AccessQueryDTO ¶ added in v1.10.4
type AccessQueryDTO struct { Id string `gorm:"column:id;primaryKey" json:"Id" form:"Id" comment:"Id"` UserId string `gorm:"column:user_id" json:"UserId" form:"UserId" comment:"UserId"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` Count int `gorm:"column:Count;type:int" json:"Count" form:"Count" comment:"Count"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` CreatedAt app.ISO8601Time `gorm:"column:created_at" json:"CreatedAt" form:"CreatedAt" comment:"CreatedAt"` UpdatedAt app.ISO8601Time `gorm:"column:updated_at" json:"UpdatedAt" form:"UpdatedAt" comment:"UpdatedAt"` }
type AccessVO ¶ added in v1.10.4
type AccessVO struct { Id string `gorm:"column:id;primaryKey" json:"Id" form:"Id" comment:"Id"` UserId string `gorm:"column:user_id" json:"UserId" form:"UserId" comment:"UserId"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` Count int `gorm:"column:Count;type:int" json:"Count" form:"Count" comment:"Count"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` CreatedAt app.ISO8601Time `gorm:"column:created_at" json:"CreatedAt" form:"CreatedAt" comment:"CreatedAt"` UpdatedAt app.ISO8601Time `gorm:"column:updated_at" json:"UpdatedAt" form:"UpdatedAt" comment:"UpdatedAt"` }
func (AccessVO) GetDetailVO ¶ added in v1.10.4
func (c AccessVO) GetDetailVO() interface{}
type LogCtxDTO ¶
type LogCtxDTO struct { Code string `gorm:"column:code" json:"Code" form:"Code" comment:"Code"` Level string `gorm:"column:level" json:"Level" form:"Level" comment:"Level"` Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Method string `gorm:"column:method" json:"Method" form:"Method" comment:"Method"` StatusCode int `gorm:"column:status_code" json:"StatusCode" form:"StatusCode" comment:"StatusCode"` Headers string `gorm:"column:headers" json:"Headers" form:"Headers" comment:"Headers"` Body string `gorm:"column:body" json:"Body" form:"Body" comment:"Body"` Latency int64 `gorm:"column:latency" json:"Latency,string" form:"Latency" comment:"Latency"` FileName string `gorm:"column:file_name" json:"FileName" form:"FileName" comment:"FileName"` FuncName string `gorm:"column:func_name" json:"FuncName" form:"FuncName" comment:"FuncName"` Data string `gorm:"column:data" json:"Data" form:"Data" comment:"Data"` }
type LogCtxVO ¶
type LogCtxVO struct { Id int64 `gorm:"primaryKey;autoIncrement:false" json:"Id,string"` Code string `gorm:"column:code" json:"Code" form:"Code" comment:"Code"` Level string `gorm:"column:level" json:"Level" form:"Level" comment:"Level"` Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Method string `gorm:"column:method" json:"Method" form:"Method" comment:"Method"` StatusCode int `gorm:"column:status_code" json:"StatusCode" form:"StatusCode" comment:"StatusCode"` Headers string `gorm:"column:headers" json:"Headers" form:"Headers" comment:"Headers"` Body string `gorm:"column:body" json:"Body" form:"Body" comment:"Body"` Latency int64 `gorm:"column:latency" json:"Latency,string" form:"Latency" comment:"Latency"` FileName string `gorm:"column:file_name" json:"FileName" form:"FileName" comment:"FileName"` FuncName string `gorm:"column:func_name" json:"FuncName" form:"FuncName" comment:"FuncName"` Data string `gorm:"column:data" json:"Data" form:"Data" comment:"Data"` CreatedAt app.ISO8601Time UpdatedAt app.ISO8601Time }
func (LogCtxVO) GetDetailVO ¶
func (c LogCtxVO) GetDetailVO() interface{}
type LogInfoDTO ¶
type LogInfoDTO struct { Code string `gorm:"column:code" json:"Code" form:"Code" comment:"Code"` Level string `gorm:"column:level" json:"Level" form:"Level" comment:"Level"` Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` }
type LogInfoVO ¶
type LogInfoVO struct { Id int64 `gorm:"primaryKey;autoIncrement:false" json:"Id,string"` Code string `gorm:"column:code" json:"Code" form:"Code" comment:"Code"` Level string `gorm:"column:level" json:"Level" form:"Level" comment:"Level"` Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` CreatedAt app.ISO8601Time UpdatedAt app.ISO8601Time }
func (LogInfoVO) GetDetailVO ¶
func (c LogInfoVO) GetDetailVO() interface{}
type LogerrDTO ¶
type LogerrDTO struct { Code string `gorm:"column:code" json:"Code" form:"Code" comment:"Code"` Level string `gorm:"column:level" json:"Level" form:"Level" comment:"Level"` Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Method string `gorm:"column:method" json:"Method" form:"Method" comment:"Method"` StatusCode int `gorm:"column:status_code" json:"StatusCode" form:"StatusCode" comment:"StatusCode"` Headers string `gorm:"column:headers" json:"Headers" form:"Headers" comment:"Headers"` Body string `gorm:"column:body" json:"Body" form:"Body" comment:"Body"` Latency int64 `gorm:"column:latency" json:"Latency,string" form:"Latency" comment:"Latency"` FileName string `gorm:"column:file_name" json:"FileName" form:"FileName" comment:"FileName"` FuncName string `gorm:"column:func_name" json:"FuncName" form:"FuncName" comment:"FuncName"` Data string `gorm:"column:data" json:"Data" form:"Data" comment:"Data"` }
type LogerrVO ¶
type LogerrVO struct { Id int64 `gorm:"primaryKey;autoIncrement:false" json:"Id,string"` Code string `gorm:"column:code" json:"Code" form:"Code" comment:"Code"` Level string `gorm:"column:level" json:"Level" form:"Level" comment:"Level"` Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Method string `gorm:"column:method" json:"Method" form:"Method" comment:"Method"` StatusCode int `gorm:"column:status_code" json:"StatusCode" form:"StatusCode" comment:"StatusCode"` Headers string `gorm:"column:headers" json:"Headers" form:"Headers" comment:"Headers"` Body string `gorm:"column:body" json:"Body" form:"Body" comment:"Body"` Latency int64 `gorm:"column:latency" json:"Latency,string" form:"Latency" comment:"Latency"` FileName string `gorm:"column:file_name" json:"FileName" form:"FileName" comment:"FileName"` FuncName string `gorm:"column:func_name" json:"FuncName" form:"FuncName" comment:"FuncName"` Data string `gorm:"column:data" json:"Data" form:"Data" comment:"Data"` CreatedAt app.ISO8601Time UpdatedAt app.ISO8601Time }
func (LogerrVO) GetDetailVO ¶
func (c LogerrVO) GetDetailVO() interface{}
Click to show internal directories.
Click to hide internal directories.