using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.External.Domain.Dto { internal class CustomerMapDto { /// /// 客户id /// [Required] public string RESID { get; set; } /// /// 工单类型 /// [Required] public decimal MTYPEID { get; set; } = -1; /// /// 业务类型 /// public decimal? BUSINESSID { get; set; } /// /// 工单大类 /// public decimal? MEMOTYPEID { get; set; } /// /// 工单小类 /// public decimal? MEMOSUBTYPEID { get; set; } /// /// 备注 /// public string? STRCONTENT { get; set; } /// /// /// public decimal? INNERUSERID { get; set; } /// /// /// public decimal? MEMOCONTENTID { get; set; } /// /// /// public decimal MEMOID { get; set; } /// /// /// public DateTime? CTIME { get; set; } /// /// /// public decimal? MEMOSTYLEID { get; set; } /// /// /// public DateTime? CALLTIME { get; set; } /// /// /// public DateTime? CALLTIMEEND { get; set; } /// /// /// public decimal? RECORDID { get; set; } /// /// /// public string COID { get; set; } } }