29 lines
661 B
C#
29 lines
661 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CSVR_CALLINLOG")]
|
|
public partial class CSVR_CALLINLOG
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(80)]
|
|
public string SRID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CALLEDNUMBER { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal? CALLSTATE { get; set; }
|
|
|
|
public decimal? SALESEID { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|