Files
novel_server/internal/model/user_points_logs.go

14 lines
872 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package model
import "github.com/gogf/gf/v2/os/gtime"
type UserPointsLog struct {
Id int64 `json:"id" orm:"id" description:"积分流水ID"`
UserId int64 `json:"userId" orm:"user_id" description:"用户ID"`
ChangeType int `json:"changeType" orm:"change_type" description:"变动类型1=消费(spend), 2=收入(earn)"`
PointsChange int `json:"pointsChange" orm:"points_change" description:"积分变化数,正数增加,负数减少"`
RelatedOrderId int64 `json:"relatedOrderId" orm:"related_order_id" description:"关联ID"`
Description string `json:"description" orm:"description" description:"变动说明"`
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"变动时间"`
}