16 lines
363 B
C#
16 lines
363 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.QQ_ALIVE")]
|
|
public class QQ_ALIVE
|
|
{
|
|
[Key]
|
|
public decimal UIN { get; set; }
|
|
public DateTime LASTTIME { get; set; }
|
|
public string VERSION { get; set; }
|
|
}
|
|
}
|