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