context.go 263 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 package domain type Context struct { // 公司 CompanyId int `json:"companyId"` // 操作人 OperatorId int `json:"operatorId"` // 操作人名称 OperatorName string `json:"operatorName"` // 租户 (个人、企业) TenantId int `json:"tenantId"` }