Files
novel_server/internal/model/entity/user_points_logs.go
2025-07-16 15:16:40 +08:00

21 lines
1.9 KiB
Go
Raw 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.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// UserPointsLogs is the golang structure for table user_points_logs.
type UserPointsLogs struct {
Id int64 `json:"id" orm:"id" description:"积分流水ID"` // 积分流水ID
UserId int64 `json:"userId" orm:"user_id" description:"用户ID"` // 用户ID
ChangeType int `json:"changeType" orm:"change_type" description:"变动类型1=消费(spend), 2=收入(earn)"` // 变动类型1=消费(spend), 2=收入(earn)
PointsChange int `json:"pointsChange" orm:"points_change" description:"积分变化数,正数增加,负数减少"` // 积分变化数,正数增加,负数减少
RelatedOrderId int64 `json:"relatedOrderId" orm:"related_order_id" description:"关联ID当change_type=1时为chapter_purchases.id当change_type=2时为advertisement_records.id"` // 关联ID当change_type=1时为chapter_purchases.id当change_type=2时为advertisement_records.id
Description string `json:"description" orm:"description" description:"变动说明"` // 变动说明
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"变动时间"` // 变动时间
}