23 lines
512 B
C#
23 lines
512 B
C#
namespace WX.CRM.Model.EntityYun
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("YUDEV.WX_ALIVE")]
|
|
public partial class WX_ALIVE
|
|
{
|
|
[Key]
|
|
[StringLength(200)]
|
|
public string USERNAME { get; set; }
|
|
|
|
public DateTime LASTTIME { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string VERSION { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string UIN { get; set; }
|
|
}
|
|
}
|