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

71 lines
1.6 KiB
C#

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