operator.go 245 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 package domain // 登录系统的操作人员 可以从头部中获取数据 type Operator struct { UserId int64 `json:"userId"` CompanyId int64 `json:"companyId"` OrgId int64 `json:"orgId"` UserBaseId int64 `json:"userBaseId"` }