TG.WXCRM.V4/Model/MAP/SOFT_CUSTOMER.cs

18 lines
353 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
public partial class SOFT_CUSTOMER
{
[NotMapped]
public string Mobile { get; set; }
}
[NotMapped]
public class SOFT_CUSTOMER_Extend : SOFT_CUSTOMER
{
[NotMapped]
public string GroupName { get; set; }
}
}