30 lines
794 B
C#
30 lines
794 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WEAPP_FRIENDS")]
|
|
public class WEAPP_FRIENDS
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public decimal USERID { get; set; }
|
|
public decimal EID { get; set; }
|
|
public string OPENID { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public DateTime? CHATTIME { get; set; }
|
|
public string REMARKS { get; set; }
|
|
public string ACCOUNTNUM { get; set; }
|
|
|
|
public decimal? ISSERVICENOW { get; set; }
|
|
|
|
public DateTime? FENPEITIME { get; set; }
|
|
|
|
public DateTime? SENDTIME { get; set; }
|
|
|
|
public DateTime? OPTIME { get; set; }
|
|
|
|
}
|
|
}
|