20 lines
493 B
C#
20 lines
493 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.MSGTOOL_PLAN_RECEIVER")]
|
|
public class MsgToolPlanReceive
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal TYPE { get; set; }
|
|
public decimal RECEIVERID { get; set; }
|
|
public decimal PLANID { get; set; }
|
|
public virtual MsgToolPlan MsgToolPlan { get; set; }
|
|
}
|
|
}
|