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