24 lines
543 B
C#
24 lines
543 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_SERVICEHITS")]
|
|
public partial class WX_SERVICEHITS
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public string USERNAME { get; set; }
|
|
|
|
public decimal? NORMALHITS { get; set; }
|
|
|
|
public decimal? OFFICEACCOUNTHITS { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? ONLINETIMES { get; set; }
|
|
}
|
|
}
|