using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.ViewModels.QiYeWeChat
{
///
/// 部门成员列表
///
public class GroupStatus_UserSimplelistView : ResponseBase
{
public List userlist { get; set; }
}
public class GroupStatus_UserSimplelistItem
{
///
/// 成员UserID。对应管理端的账号
///
public string userid { get; set; }
///
/// 成员名称
///
public string name { get; set; }
///
/// 成员所属部门列表
///
public List department { get; set; }
}
///
/// 创建群聊
///
public class GroupStatus_CreateChatView : ResponseBase
{
public string chatid { get; set; }
}
public class GroupStatus_SendMessageView : ResponseBase
{
///
/// 不合法的userid,不区分大小写,统一转为小写
///
public string invaliduser { get; set; }
///
/// 不合法的partyid
///
public string invalidparty { get; set; }
///
/// 不合法的标签id
///
public string invalidtag { get; set; }
///
/// 没有基础接口许可(包含已过期)的userid
///
public string unlicenseduser { get; set; }
///
/// 消息id,用于撤回应用消息
///
public string msgid { get; set; }
///
/// 仅消息类型为“按钮交互型”,“投票选择型”和“多项选择型”的模板卡片消息返回,应用可使用response_code调用更新模版卡片消息接口,72小时内有效,且只能使用一次
///
public string response_code { get; set; }
}
}