2025-04-21 14:10:27 +08:00

68 lines
1.9 KiB
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 MyCode.Project.Domain.Message.Response.EnterpriseWechat
{
public class EnterpriseEmployeeInfo : BaseEnterpriseNoCheckResp
{
/// <summary>
/// 成员名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 员工UserID。对应管理端的帐号
/// </summary>
public string userid { get; set; }
/// <summary>
/// 别名
/// </summary>
public string alias { get; set; }
/// <summary>
/// 性别。0表示未定义1表示男性2表示女性
/// </summary>
public int gender { get; set; }
/// <summary>
/// 手机号
/// </summary>
public string mobile { get; set; }
/// <summary>
/// 职务
/// </summary>
public string position { get; set; }
/// <summary>
/// 头像url
/// </summary>
public string avatar { get; set; }
/// <summary>
/// 头像缩略图url
/// </summary>
public string thumb_avatar { get; set; }
/// <summary>
/// 邮箱
/// </summary>
public string email { get; set; }
/// <summary>
/// 激活状态: 1=已激活2=已禁用4=未激活5=退出企业。
/// 已激活代表已激活企业微信或已关注微工作台(原企业号)。未激活代表既未激活企业微信又未关注微工作台(原企业号)。
/// </summary>
public int status { get; set; }
/// <summary>
/// 全局唯一
/// </summary>
public string open_userid { get; set; }
}
}