ComplianceServer/oldcode/Model/Entity/CSVR_TODOITEM.cs

43 lines
1.1 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(18)]
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; }
}
}