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

44 lines
999 B
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_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; }
}
}