update time
continuous-integration/drone/push Build is failing Details

master v1.0.3
李光春 2 years ago
parent 4c466d3aa1
commit d1851413fb

@ -3,7 +3,6 @@ package golog
import (
"gorm.io/datatypes"
"gorm.io/gorm"
"time"
)
// 接口定义
@ -15,7 +14,7 @@ type api struct {
// ApiPostgresqlLog 结构体
type ApiPostgresqlLog struct {
LogId uint `gorm:"primaryKey"` //【记录】编号
RequestTime time.Time `gorm:"index"` //【请求】时间
RequestTime TimeString `gorm:"index"` //【请求】时间
RequestUri string `gorm:"type:text"` //【请求】链接
RequestUrl string `gorm:"type:text"` //【请求】链接
RequestApi string `gorm:"type:text;index"` //【请求】接口
@ -26,7 +25,7 @@ type ApiPostgresqlLog struct {
ResponseStatusCode int `gorm:"type:bigint"` //【返回】状态码
ResponseBody datatypes.JSON `gorm:"type:jsonb"` //【返回】内容
ResponseContentLength int64 `gorm:"type:bigint"` //【返回】大小
ResponseTime time.Time `gorm:"index"` //【返回】时间
ResponseTime TimeString `gorm:"index"` //【返回】时间
}
// AutoMigrate 自动迁移

@ -3,7 +3,6 @@ package golog
import (
"gorm.io/datatypes"
"gorm.io/gorm"
"time"
)
// 框架定义
@ -16,7 +15,7 @@ type gin struct {
type GinPostgresqlLog struct {
LogId uint `gorm:"primaryKey"` //【记录】编号
TraceId string `gorm:"type:text"` //【系统】链编号
RequestTime time.Time `gorm:"index"` //【请求】时间
RequestTime TimeString `gorm:"index"` //【请求】时间
RequestUri string `gorm:"type:text"` //【请求】请求链接 域名+路径+参数
RequestUrl string `gorm:"type:text"` //【请求】请求链接 域名+路径
RequestApi string `gorm:"type:text;index"` //【请求】请求接口 路径
@ -33,7 +32,7 @@ type GinPostgresqlLog struct {
RequestIpCity string `gorm:"type:text"` //【请求】请求客户端城市
RequestIpIsp string `gorm:"type:text"` //【请求】请求客户端运营商
RequestHeader datatypes.JSON `gorm:"type:jsonb"` //【请求】请求头
ResponseTime time.Time `gorm:"index"` //【返回】时间
ResponseTime TimeString `gorm:"index"` //【返回】时间
ResponseCode int `gorm:"type:bigint"` //【返回】状态码
ResponseMsg string `gorm:"type:text"` //【返回】描述
ResponseData datatypes.JSON `gorm:"type:jsonb"` //【返回】数据

@ -1,3 +1,3 @@
package golog
const Version = "1.0.2"
const Version = "1.0.3"

Loading…
Cancel
Save