using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Domain.Dto.OutComplaint { public class CreateOutComplaintFollowUpDto { /// /// 外诉id /// public int? Id { get; set; } /// /// 投诉内容 /// public string? Content { get; set; } /// /// 处理进记 /// public string? Follow { get; set; } /// /// 操作人 /// public string? Operator { get; set; } /// /// 操作人eid /// public int? OperatorEid { get; set; } } }