61 lines
1.3 KiB
C#
61 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
|
|
namespace WX.CRM.Model.QueryMap
|
|
{
|
|
[Serializable]
|
|
public class CustomerInfo
|
|
{
|
|
/// <summary>
|
|
/// 客户ID
|
|
/// </summary>
|
|
[NotMapped]
|
|
public string RequsetResId { get; set; }
|
|
|
|
|
|
[NotMapped]
|
|
public string CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
[NotMapped]
|
|
public string CustomerName { get; set; }
|
|
|
|
[NotMapped]
|
|
public List<RES_CUSTOMER> ResCustomerList { get; set; }
|
|
//[NotMapped] public List<RES_CUSTOMER_REDIS> ResCustomerList { get; set; }
|
|
|
|
//[NotMapped]
|
|
//public List<FXH_CUSTOMER> FxhCustomerList { get; set; }
|
|
|
|
//[NotMapped]
|
|
//public List<GJS_CUSTOMER> GjsCustomerList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 公司业务
|
|
/// </summary>
|
|
[NotMapped]
|
|
public string BusinessNames { get; set; }
|
|
|
|
public int IsFromHg { get; set; }
|
|
}
|
|
|
|
public class FB_GJS_MANGAGER
|
|
{
|
|
[NotMapped]
|
|
public string tradeCode { get; set; }
|
|
|
|
[NotMapped]
|
|
public decimal UserId { get; set; }
|
|
|
|
[NotMapped]
|
|
public string deptCode { get; set; }
|
|
|
|
|
|
}
|
|
}
|