ComplianceServer/oldcode/Model/Entity/WX_LASTMSGTIME.cs

15 lines
335 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_LASTMSGTIME")]
public class WX_LASTMSGTIME
{
[Key]
public string USERNAME { get; set; }
public DateTime LASTTIME { get; set; }
}
}