crm.core/code/Crm.Core.Entity/MsgTool/MsgToolTaskCmdDetail.cs

73 lines
1.8 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 Crm.Core.Entity.MsgTool
{
/// <summary>
/// 指令明细(存储需要发送的客户信息)
/// </summary>
[Table("MSGTOOL_TASK_CMD_DETAIL")]
public class MsgToolTaskCmdDetail
{
public MsgToolTaskCmdDetail()
{
}
[Key]
public decimal PKID { get; set; }
/// <summary>
/// 企业号ID
/// </summary>
[StringLength(50)]
public string? CORPID { get; set; }
/// <summary>
/// 外部联系人ID
/// </summary>
[StringLength(50)]
public string? EXTUSERID { get; set; }
/// <summary>
/// 客户名称
/// </summary>
[StringLength(100)]
public string? NICKNAME { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CTIME { get; set; }
/// <summary>
/// 客服ID
/// </summary>
[StringLength(100)]
public string? KFUSERID { get; set; }
/// <summary>
/// 执行时间(执行后反馈的执行时间)
/// </summary>
public DateTime? EXETIME { get; set; }
/// <summary>
/// 180待执行 
/// 220执行成功 
/// 500执行错误
/// 404找不到人
/// </summary>
public MsgToolTaskCmdDetailStatus STATUS { get; set; }
/// <summary>
/// 指令IDMSGTOOL_TASK_CMD的PKID
/// </summary>
public decimal? CMDID { get; set; }
public int? UNENABLED { get; set; } //禁用 为 1 默认为0
public virtual MsgToolTaskCmd? MsgToolTaskCmd { get; set; }
}
}