32 lines
769 B
C#
32 lines
769 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CSVR_CALLDATAREPORT")]
|
|
public partial class CSVR_CALLDATAREPORT
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal? SALESEID { get; set; }
|
|
|
|
public DateTime? COUNTDATE { get; set; }
|
|
|
|
public decimal? TOTAL_COUT { get; set; }
|
|
|
|
public decimal? TIMELEN_COUT { get; set; }
|
|
|
|
public decimal? TOTAL_CIN { get; set; }
|
|
|
|
public decimal? TIMELEN_CIN { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
|
|
public decimal? TOTAL_COUNT_MOBILE { get; set; }
|
|
|
|
public decimal? TOTAL_UN_COUNT { get; set; }
|
|
}
|
|
}
|