Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/TencentIM/TenantUserInfoModel.cs

33 lines
894 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.TencentIM
{
public class TenantUserInfoModel
{
/// <summary>
/// 请求检查的账号的 UserID
/// </summary>
public string UserID { get; set; }
/// <summary>
/// 单个账号的检查结果:
///0表示成功
///非0表示失败
/// </summary>
public int ResultCode { get; set; }
/// <summary>
/// 单个账号检查失败时的错误描述信息
/// </summary>
public string ResultInfo { get; set; }
/// <summary>
/// 单个账号的导入状态Imported 表示已导入NotImported 表示未导入
/// </summary>
public string AccountStatus { get; set; }
}
}