41 lines
947 B
C#
41 lines
947 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.External.Domain.Dto
|
|
{
|
|
/// <summary>
|
|
/// 销售线索-客户详情
|
|
/// </summary>
|
|
public class WxworkCustomerDto
|
|
{
|
|
public WxworkCustomerDto()
|
|
{
|
|
WxworkCustomerInfo = new WxworkCustomerDetailDto();
|
|
FollowUpRecord = new FollowUpRecordDto();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 应用id
|
|
/// </summary>
|
|
public string? Appid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工号
|
|
/// </summary>
|
|
public decimal? Eid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户信息
|
|
/// </summary>
|
|
public WxworkCustomerDetailDto WxworkCustomerInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 跟进记录
|
|
/// </summary>
|
|
public FollowUpRecordDto FollowUpRecord { get; set; }
|
|
}
|
|
}
|