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

83 lines
2.0 KiB
C#

namespace WX.CRM.Model.EntityYun
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("YUDEV.WX_RCONTACT")]
public partial class WX_RCONTACT
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public decimal PKID { get; set; }
[Required]
[StringLength(50)]
public string JOBWXUSERNAME { get; set; }
[Required]
[StringLength(50)]
public string USERNAME { get; set; }
[StringLength(50)]
public string ALIAS { get; set; }
[StringLength(200)]
public string CONREMARK { get; set; }
[StringLength(200)]
public string DOMAINLIST { get; set; }
[StringLength(200)]
public string NICKNAME { get; set; }
[StringLength(100)]
public string PYINITIAL { get; set; }
[StringLength(100)]
public string QUANPIN { get; set; }
public decimal? SHOWHEAD { get; set; }
public decimal? TYPE { get; set; }
public decimal? WEIBOFLAG { get; set; }
[StringLength(100)]
public string WEIBONICKNAME { get; set; }
[StringLength(200)]
public string CONREMARKPYFULL { get; set; }
[StringLength(100)]
public string CONREMARKPYSHORT { get; set; }
[StringLength(2000)]
public string LVBUFF { get; set; }
public decimal? VERFYFLAG { get; set; }
[StringLength(200)]
public string ENCRYPTUSERNAME { get; set; }
public decimal? CHATROOMFLAG { get; set; }
public decimal? DELETEFLAG { get; set; }
[StringLength(200)]
public string CONTACTLABELIDS { get; set; }
public DateTime? CTIME { get; set; }
[StringLength(50)]
public string RESOURCETAG { get; set; }
[StringLength(100)]
public string RESID { get; set; }
public decimal? ISTOBEADDFRIENDS { get; set; }
public decimal? LASTCHATTIME { get; set; }
}
}