...
|
...
|
@@ -306,7 +306,7 @@ type BatchAddUserItem struct { |
|
|
// 部门编码
|
|
|
Department string `json:"department"`
|
|
|
// 状态(1:启用 2:禁用 3:注销)
|
|
|
EnableStatus int `json:"enableStatus,omitempty"`
|
|
|
EnableStatus string `json:"enableStatus,omitempty"`
|
|
|
// 共创公司 cooperationCompany
|
|
|
CooperationCompany string `json:"cooperationCompany"`
|
|
|
// 共创到期时间 (yyyy-MM-dd) cooperationDeadline
|
...
|
...
|
@@ -315,3 +315,13 @@ type BatchAddUserItem struct { |
|
|
// 失败理由
|
|
|
FailReason string `json:"failReason"`
|
|
|
}
|
|
|
|
|
|
func (item *BatchAddUserItem) Status() int {
|
|
|
if item.EnableStatus == "启用" {
|
|
|
return 1
|
|
|
}
|
|
|
if item.EnableStatus == "禁用" {
|
|
|
return 2
|
|
|
}
|
|
|
return 1
|
|
|
} |
...
|
...
|
|