...
|
...
|
@@ -9,6 +9,10 @@ type CompanyUserItem struct { |
|
|
UserId string `json:"userId"`
|
|
|
UserName string `json:"userName"`
|
|
|
UserType int `json:"userType"`
|
|
|
// 员工类型 1:固定 2:派遣 3.临时
|
|
|
EmployeeType int `json:"employeeType"`
|
|
|
// IC卡号
|
|
|
IcCardNumber string `json:"icCardNumber"`
|
|
|
AuthFlag bool `json:"authFlag"` // 1:可操作(编辑,修改等)
|
|
|
}
|
|
|
|
...
|
...
|
@@ -25,6 +29,10 @@ type CompanyUserInfo struct { |
|
|
OrgName string `json:"orgName"`
|
|
|
DepartmentID string `json:"departmentId"`
|
|
|
DepartmentName string `json:"departmentName"`
|
|
|
// 员工类型 1:固定 2:派遣 3.临时
|
|
|
EmployeeType int `json:"employeeType"`
|
|
|
// IC卡号
|
|
|
IcCardNumber string `json:"icCardNumber"`
|
|
|
UsersOrg []UserOrg `json:"userOrg"`
|
|
|
UsersRole []UserRole `json:"userRole"`
|
|
|
}
|
...
|
...
|
|