org.go 208 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 package domain // Org 组织机构值对象 type Org struct { // 组织机构ID OrgId int64 `json:"orgId"` // 组织名称 OrgName string `json:"orgName"` // 公司 Company *Company `json:"company"` }