using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Complaint.Domain.Dto { /// /// 消极消息 /// public class NegativeMessageDto { /// /// 消息ID /// public string? Msgid { get; set; } /// /// 消息类型 /// public string? Msgtype { get; set; } /// /// 接收时间 /// public long? Recvtime { get; set; } /// /// 发送时间 /// public long? Msgtime { get; set; } /// /// 企微ID /// public string? Corpid { get; set; } /// /// 企微名称 /// public string? Corpname { get; set; } /// /// 群消息接收者列表 /// public string? Tolist { get; set; } /// /// 房间ID /// public string? Roomid { get; set; } /// /// 发送序列号 /// public long? Seq { get; set; } /// /// 发送或接收,1:发送,2:接收 /// [JsonPropertyName("send_type")] public int? SendType { get; set; } /// /// 聊天内容 /// [JsonPropertyName("text_content")] public string? TextContent { get; set; } /// /// 不合规词汇ID位图 /// [JsonPropertyName("illegal_words")] public string[]? IllegalWords { get; set; } /// /// 外部联系人客户ID /// [JsonPropertyName("external_resid")] public string? ExternalResid { get; set; } /// /// 外部联系人联合ID /// [JsonPropertyName("external_unionid")] public string? ExternalUnionid { get; set; } /// /// 外部联系人账号或群ID /// [JsonPropertyName("external_appuserid")] public string? EnternalAppuserid { get; set; } /// /// 外部联系人昵称或群名称 /// [JsonPropertyName("external_nickname")] public string? ExternalNickname { get; set; } /// /// 内部联系人工号 /// [JsonPropertyName("internal_eid")] public int? EnternalEid { get; set; } /// /// 内部联系人小组ID /// [JsonPropertyName("internal_groupid")] public int? InternalGroupid { get; set; } /// /// 内部联系人部门ID /// [JsonPropertyName("internal_deptid")] public int? InternalDeptid { get; set; } /// /// 内部联系人员工姓名 /// [JsonPropertyName("internal_employee_name")] public string? InternalEmployeeName { get; set; } /// /// 内部联系人小组名称 /// [JsonPropertyName("internal_group_name")] public string? InternalGroupName { get; set; } /// /// 内部联系人业务部名称 /// [JsonPropertyName("internal_dept_name")] public string? InternalDeptName { get; set; } /// /// 内部联系人联合ID /// [JsonPropertyName("internal_unionid")] public string? InternalUnionid { get; set; } /// /// 内部联系人昵称或群名称 /// [JsonPropertyName("internal_nickname")] public string? InternalNickname { get; set; } /// /// 内部联系人ID /// [JsonPropertyName("internal_appuserid")] public string? InternalAppuserid { get; set; } } }