package ik3cloud type Ik3cloud struct { Department department // 部门 Staff staff // 员工 Contact contact // 联系人 Factory factory // 工厂 } type Entity struct { Id int64 `json:"Id"` Number string `json:"Number"` DIndex int `json:"DIndex"` } type Unique struct { Numbers []string // 编码 Ids []int64 // id }