Files
TrangleAgent/Backend/internal/model/do/role_cards.go
2026-01-18 18:20:40 +08:00

41 lines
1.7 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 do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// RoleCards is the golang structure of table role_cards for DAO operations like Where/Data.
type RoleCards struct {
g.Meta `orm:"table:role_cards, do:true"`
Id any // 角色卡ID
UserId any // 所属用户ID
DepartmentId any // 所属部门ID
Commendation any // 嘉奖次数
Reprimand any // 申戒次数
BlueTrack any // 蓝轨0-40
YellowTrack any // 黄轨0-40
RedTrack any // 红轨0-40
ArcAbnormal any // ARC异常
ArcReality any // ARC现实
ArcPosition any // ARC职位
AgentName any // 特工名字
CodeName any // 代号
Gender any // 性别
QaMeticulous any // Meticulousness (0-100, QA)
QaDeception any // Deception (0-100, QA)
QaVigor any // Vigor / Drive (0-100, QA)
QaEmpathy any // Empathy (0-100, QA)
QaInitiative any // Initiative (0-100, QA)
QaResilience any // Resilience / Persistence (0-100, QA)
QaPresence any // Presence / Charisma (0-100, QA)
QaProfessional any // Professionalism (0-100, QA)
QaDiscretion any // Discretion / Low profile (0-100, QA)
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}