Files
novel_server/internal/model/do/user_sign_in_logs.go

26 lines
1.1 KiB
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.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// UserSignInLogs is the golang structure of table user_sign_in_logs for DAO operations like Where/Data.
type UserSignInLogs struct {
g.Meta `orm:"table:user_sign_in_logs, do:true"`
Id interface{} // 主键
UserId interface{} // 用户ID关联 users 表
RuleId interface{} // 规则ID关联 sign_in_reward_rules 表
RewardDetailId interface{} // 奖励详情ID关联 sign_in_reward_details 表
SignInDate *gtime.Time // 签到日期
Quantity interface{} // 奖励数量,如积分数量或礼包数量
Status interface{} // 记录状态1=有效0=无效
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
DeletedAt *gtime.Time // 软删除时间戳
}