15 lines
335 B
C#
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; }
|
|
}
|
|
}
|