26 lines
765 B
C#
26 lines
765 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.MSGTOOL_TASK_CMD_DETAIL")]
|
|
public class MsgToolTaskCmdDetail
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
[StringLength(50)]
|
|
public string CORPID { get; set; }
|
|
[StringLength(50)]
|
|
public string EXTUSERID { get; set; }
|
|
[StringLength(100)]
|
|
public string NICKNAME { get; set; }
|
|
public DateTime? CTIME { get; set; }
|
|
[StringLength(100)]
|
|
public string KFUSERID { get; set; }
|
|
public DateTime? EXETIME { get; set; }
|
|
public int STATUS { get; set; }
|
|
public decimal? CMDID { get; set; }
|
|
}
|
|
}
|