22 lines
574 B
C#
22 lines
574 B
C#
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? ASSIGNSTATUS { get; set; }
|
|
public decimal? ERRORCODE { get; set; }
|
|
}
|
|
}
|