23 lines
540 B
C#
23 lines
540 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.WX_WORKACCOUNT_ONLINELOG")]
|
|
public partial class WX_WORKACCOUNT_ONLINELOG
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string USERNAME { get; set; }
|
|
|
|
public decimal? ALIVENUM { get; set; }
|
|
|
|
public decimal? ONLINERATE { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|