46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package param
|
|
|
|
// AccountImportRes 导入单个账号返回
|
|
type AccountImportRes struct{}
|
|
|
|
// ===============================================================
|
|
|
|
// AccountCheckRes 查询账号列表返回
|
|
type AccountCheckRes struct {
|
|
ResultItem []*AccountCheckResItem `json:"ResultItem"`
|
|
}
|
|
|
|
// AccountCheckResItem 账号查询结果
|
|
type AccountCheckResItem struct {
|
|
UserID string `json:"UserID"`
|
|
ResultCode int `json:"ResultCode"`
|
|
ResultInfo string `json:"ResultInfo"`
|
|
AccountStatus string `json:"AccountStatus"`
|
|
}
|
|
|
|
// ===============================================================
|
|
|
|
// AccountDeleteRes 账号删除返回
|
|
type AccountDeleteRes struct {
|
|
ResultItem []*AccountDeleteResItem `json:"ResultItem"`
|
|
}
|
|
|
|
// AccountDeleteResItem 账号删除结果
|
|
type AccountDeleteResItem struct {
|
|
UserID string `json:"UserID"`
|
|
ResultCode int `json:"ResultCode"`
|
|
ResultInfo string `json:"ResultInfo"`
|
|
}
|
|
|
|
// ===============================================================
|
|
|
|
// GroupCreateRes 建群返回
|
|
type GroupCreateRes struct {
|
|
GroupId string `json:"GroupId"`
|
|
}
|
|
|
|
// ===============================================================
|
|
|
|
// ProfileSetRes 资料设置返回
|
|
type ProfileSetRes struct{}
|