26 lines
795 B
C#
26 lines
795 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.QQ_FRIENDS")]
|
|
public class QQ_FRIENDS
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public string UIN { get; set; }
|
|
public string REMARK { get; set; }
|
|
public string NAME { get; set; }
|
|
public decimal STATUS { get; set; }
|
|
public decimal GROUPID { get; set; }
|
|
public DateTime DATETIME { get; set; }
|
|
public string ALIAS { get; set; }
|
|
public decimal AGE { get; set; }
|
|
public decimal GENDER { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public string JOBUIN { get; set; }
|
|
public int FRIENDTYPE { get; set; }
|
|
}
|
|
}
|