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

26 lines
753 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WW_HHUSER_EID")]
public class WW_HHUSER_EID
{
[Key]
[Column(Order = 0)]
public string USERID { get; set; }
[Key]
[Column(Order = 1)]
public string CORPID { get; set; }
public decimal? EID { get; set; }
public decimal INNERUSERID { get; set; }
public decimal? DEPTID { get; set; }
public decimal? ASSIGNSTATUS { get; set; } //推广状态
public decimal? ERRORCODE { get; set; }
public DateTime? CTIME { get; set; }
public decimal? STATUS { get; set; } //企微状态
}
}