18 lines
430 B
C#
18 lines
430 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Map
|
|
{
|
|
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; }
|
|
}
|
|
}
|