TG.WXCRM.V4/Model/EntityYun/WX_FRIENDSRELATION.cs

36 lines
855 B
C#

namespace WX.CRM.Model.EntityYun
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("YUDEV.WX_FRIENDSRELATION")]
public partial class WX_FRIENDSRELATION
{
[Key]
public decimal PKID { get; set; }
[StringLength(200)]
public string USERNAME { get; set; }
[StringLength(200)]
public string JOBUSERNAME { get; set; }
[StringLength(100)]
public string MSGSVRID { get; set; }
[StringLength(250)]
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; }
}
}