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
{
///
/// 客户ID
///
[NotMapped]
public string RequsetResId { get; set; }
[NotMapped]
public string CustomerId { get; set; }
///
/// 客户名称
///
[NotMapped]
public string CustomerName { get; set; }
[NotMapped]
public List ResCustomerList { get; set; }
//[NotMapped] public List ResCustomerList { get; set; }
//[NotMapped]
//public List FxhCustomerList { get; set; }
//[NotMapped]
//public List GjsCustomerList { get; set; }
///
/// 公司业务
///
[NotMapped]
public string BusinessNames { get; set; }
public int IsFromHg { get; set; }
public int IsOther { 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; }
}
}