37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_FRIENDSRELATION")]
|
|
public class WX_FRIENDSRELATION
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public string USERNAME { get; set; }
|
|
public string JOBUSERNAME { get; set; }
|
|
public string MSGSVRID { get; set; }
|
|
public string CONTENT { get; set; }
|
|
public DateTime? CREATETIME { get; set; }
|
|
public DateTime? CTIME { get; set; }
|
|
public decimal? TYPE { get; set; }
|
|
public decimal? ISWORKACOUNT { get; set; }
|
|
public decimal? ISINNERUSER { get; set; }
|
|
public decimal? ISTUIGUANG { get; set; }
|
|
public DateTime? ORDERCTIME { get; set; }
|
|
}
|
|
|
|
public class WxBeiJiaResource
|
|
{
|
|
public string UserName { get; set; }
|
|
public string Alias { get; set; }
|
|
public string NickName { get; set; }
|
|
public string ConRemark { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public decimal Type { get; set; }
|
|
|
|
public string JobUserName { get; set; }
|
|
}
|
|
}
|