19 lines
410 B
C#
19 lines
410 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.WX_USERIMEI")]
|
|
public partial class WX_USERIMEI
|
|
{
|
|
[Key]
|
|
[StringLength(50)]
|
|
public string IMEI { get; set; }
|
|
|
|
public decimal EID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|