69 lines
2.2 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 SqlSugar;
using System.Collections.Generic;
namespace Learun.Application.WeChat.WeChat
{
/// <summary>
/// 版 本 Learun-ADMS V6.1.6.0 敏捷开发框架
/// Copyright (c) 2013-2017 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2017-09-22 12:01
/// 描 述:微信成员实体类
/// </summary>
public class WeChatUserEntity
{
/// <summary>
/// 成员UserID
/// </summary>
public string userid { get; set; }
/// <summary>
/// 成员名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 英文名
/// </summary>
public string english_name { get; set; }
/// <summary>
/// 手机号码。企业内必须唯一mobile/email二者不能同时为空
/// </summary>
public string mobile { get; set; }
/// <summary>
/// 成员所属部门id列表,不超过20个
/// </summary>
public List<int> department { get; set; }
/// <summary>
/// 部门内的排序值默认为0成员次序以创建时间从小到大排列。数量必须和department一致数值越大排序越前面。有效的值范围是[0, 2^32)
/// </summary>
public List<int> order { get; set; }
/// <summary>
/// 职位信息
/// </summary>
public string position { get; set; }
/// <summary>
/// 性别。1表示男性2表示女性
/// </summary>
public int gender { get; set; }
/// <summary>
/// 邮箱。长度为0~64个字节。企业内必须唯一mobile/email二者不能同时为空
/// </summary>
public string email { get; set; }
/// <summary>
/// 座机
/// </summary>
public string telephone { get; set; }
/// <summary>
/// 上级
/// </summary>
public int isleader { get; set; }
/// <summary>
/// 成员头像的mediaid
/// </summary>
public string avatar_mediaid { get; set; }
/// <summary>
/// 启用/禁用成员。1表示启用成员0表示禁用成员
/// </summary>
public int enable { get; set; }
}
}