org.go 281 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 package domain // 组织机构 type Org struct { // 组织ID OrgId int `json:"orgId,omitempty"` // 组织名称 OrgName string `json:"orgName,omitempty"` } func CheckOrgAuth(currentOrg int, belongOrg int) bool { if currentOrg == belongOrg { return true } return false }