30 lines
692 B
C#
30 lines
692 B
C#
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_KFDETAIL")]
|
|
public class MsgToolTaskKFDetail
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string? CORPID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string? KFUSERID { get; set; }
|
|
|
|
public decimal TASKID { get; set; }
|
|
public string? KFNICKNAME { get; set; }
|
|
public string? CORPNAME { get; set; }
|
|
}
|
|
} |