using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.External.Domain.Dto { /// /// 跟进记录 /// public class FollowUpRecordDto { public FollowUpRecordDto() { FollowUpRecordDetails = new List(); } /// /// 客户资源id /// public string? Resid { get; set; } /// /// /// public List FollowUpRecordDetails { get; set; } } }