using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.External.Domain.Dto
{
///
/// 跟进记录详情
///
public class FollowUpRecordDetailDto
{
///
/// 记录类型
///
public string? RecordType { get; set; }
///
/// 客服
///
public string? User { get; set; }
///
/// 描述
///
public string? Description { get; set; }
///
/// 时间
///
public DateTime Date { get; set; }
///
/// 是否私密
///
public bool Hidden { get; set; }
///
/// 是否私密内容
///
public bool Private { get; set; }
///
///
///
public decimal Eid { get; set; }
}
}