service/dbstruct/history.go

15 lines
401 B
Go

package dbstruct
const (
HistoryTypeVas = "vas"
)
type History struct {
Ct int64 `json:"ct" bson:"ct"` // 时间戳
Req string `json:"req" bson:"req"` // 请求参数
Type string `json:"type" bson:"type"` // type
SType string `json:"stype" bson:"stype"` // stype
Old string `json:"old" bson:"old"` // 旧信息
New string `json:"new" bson:"new"` // 新信息
}