29 lines
966 B
C#
29 lines
966 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.EntityFB
|
|
{
|
|
public class Csvr_HgRecord
|
|
{
|
|
[Key]
|
|
public long pkid { get; set; }
|
|
public long? recordid { get; set; }
|
|
public string filename { get; set; }
|
|
public string resid { get; set; }
|
|
public string servicenumber { get; set; }
|
|
public string telnumberlast4 { get; set; }
|
|
public int? timelength { get; set; }
|
|
public long? saleseid { get; set; }
|
|
public DateTime? timestart { get; set; }
|
|
public DateTime? timeend { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public long? inneruserid { get; set; }
|
|
public long? memoid { get; set; }
|
|
public int? isdown { get; set; }
|
|
public string serverid { get; set; }
|
|
public int? recordtype { get; set; }
|
|
public long? orderid { get; set; }
|
|
public string content { get; set; }
|
|
}
|
|
}
|