crm.core/code/Crm.Core.External.Domain/Dto/FollowUpRecordDto.cs

30 lines
653 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 FollowUpRecordDto
{
public FollowUpRecordDto()
{
FollowUpRecordDetails = new List<FollowUpRecordDetailDto>();
}
/// <summary>
/// 客户资源id
/// </summary>
public string? Resid { get; set; }
/// <summary>
///
/// </summary>
public List<FollowUpRecordDetailDto> FollowUpRecordDetails { get; set; }
}
}