18 lines
419 B
C#
18 lines
419 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_ALIVEIMEI")]
|
|
public class WX_ALIVEIMEI
|
|
{
|
|
[Key]
|
|
[Required]
|
|
public string IMEI { get; set; }
|
|
[StringLength(200)]
|
|
public string USERNAME { get; set; }
|
|
public DateTime LASTTIME { get; set; }
|
|
}
|
|
}
|