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

30 lines
1004 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WEWORK_RCONTACT")]
public class WEWORK_RCONTACT
{
[Key]
public string REMOTEID { get; set; }
public string NAME { get; set; }
public string MOBILE { get; set; }
public string JOB { get; set; }
public string USERDEPTINFOLIST { get; set; }
public string UNIONID { get; set; }
public string CORPID { get; set; }
public string AVATORURL { get; set; }
public string MD5 { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? UTIME { get; set; }
public string VID { get; set; }
public string COMPANYREMARK { get; set; }
public string REMARKPHONE { get; set; }
public string REALREMARK { get; set; }
public string JSONTEXT { get; set; }
public string REMARKS { get; set; }
}
}