TG.WXCRM.V4/Model/Entity/CSVR_TODOITEM.cs

48 lines
1.2 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_TODOITEM")]
public partial class CSVR_TODOITEM
{
[Key]
public decimal PKID { get; set; }
public decimal SENDEDUSERID { get; set; }
public decimal RECEIVEDUSERID { get; set; }
public short ISPRIVATE { get; set; }
[StringLength(100)]
public string RESID { get; set; }
[StringLength(500)]
public string MEMO { get; set; }
public DateTime? STARTTIME { get; set; }
public decimal? DOSTATUS { get; set; }
[StringLength(500)]
public string DOREMARK { get; set; }
public DateTime? DOTIME { get; set; }
public decimal? DOUSERID { get; set; }
public DateTime? CTIME { get; set; }
public string URL { get; set; }
public string URLTITLE { get; set; }
public string RESOURCETAG { get; set; }
public string REMARK { get; set; }
public int? DEPTID { get; set; }
/// <summary>
/// »î¶¯±¸×¢
/// </summary>
public string EXTXML { get; set; }
}
}