using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.MsgTool
{
///
/// 群发计划表--客服明细
///
[Table("MSGTOOL_PLAN_RECEIVER")]
public class MsgToolPlanReceive
{
public MsgToolPlanReceive()
{
}
[Key]
public decimal PKID { get; set; }
///
/// 1:部门
/// 2:组别
/// 3:工号
///
public MsgToolPlanReceiveType TYPE { get; set; }
///
/// 根据
/// type = 1 存部门ID
/// type = 2 存组别ID
/// type = 3 存工号
///
public decimal RECEIVERID { get; set; }
///
/// 计划id
///
public decimal PLANID { get; set; }
public virtual MsgToolPlan? MsgToolPlan { get; set; }
}
}