ComplianceServer/oldcode/Model/Entity/CSVR_HGRECORD.cs

54 lines
1.2 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_HGRECORD")]
public partial class CSVR_HGRECORD
{
[Key]
public decimal PKID { get; set; }
public decimal? RECORDID { get; set; }
[StringLength(150)]
public string FILENAME { get; set; }
[StringLength(18)]
public string RESID { get; set; }
[StringLength(32)]
public string SERVICENUMBER { get; set; }
[StringLength(32)]
public string TELNUMBERLAST4 { get; set; }
public decimal? TIMELENGTH { get; set; }
public decimal? SALESEID { get; set; }
public DateTime? TIMESTART { get; set; }
public DateTime? TIMEEND { get; set; }
public DateTime? CTIME { get; set; }
public decimal? INNERUSERID { get; set; }
public decimal? MEMOID { get; set; }
public short? ISDOWN { get; set; }
[StringLength(150)]
public string SERVERID { get; set; }
public decimal? RECORDTYPE { get; set; }
public decimal? ORDERID { get; set; }
[StringLength(4000)]
public string CONTENT { get; set; }
}
}