44 lines
999 B
C#
44 lines
999 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_PLAN_RECEIVER")]
|
||
public class MsgToolPlanReceive
|
||
{
|
||
public MsgToolPlanReceive()
|
||
{
|
||
}
|
||
|
||
[Key]
|
||
public decimal PKID { get; set; }
|
||
|
||
/// <summary>
|
||
/// 1:部门
|
||
/// 2:组别
|
||
/// 3:工号
|
||
/// </summary>
|
||
public MsgToolPlanReceiveType TYPE { get; set; }
|
||
|
||
/// <summary>
|
||
/// 根据
|
||
/// type = 1 存部门ID
|
||
/// type = 2 存组别ID
|
||
/// type = 3 存工号
|
||
/// </summary>
|
||
public decimal RECEIVERID { get; set; }
|
||
|
||
/// <summary>
|
||
/// 计划id
|
||
/// </summary>
|
||
public decimal PLANID { get; set; }
|
||
|
||
public virtual MsgToolPlan? MsgToolPlan { get; set; }
|
||
}
|
||
} |