ComplianceServer/oldcode/Model/MAP/SOFT_USER_EXTEND.cs

30 lines
682 B
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
public class SOFT_USER_EXTEND
{
[NotMapped]
public string USERNAME { get; set; }
[NotMapped]
public string RESID { get; set; }
[NotMapped]
public Nullable<decimal> USERNO { get; set; }
[NotMapped]
public Nullable<decimal> REGCAMPAINID { get; set; }
}
public class Soft_User_UserData
{
[NotMapped]
public string userName { get; set; }
[NotMapped]
public string tradeCode { get; set; }
[NotMapped]
public string Hst_username { get; set; }
}
}