using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Domain.Dto.InComplaint
{
public class CreateInComplaintRestoreDto
{
public int Id { get; set; }
public string? Content { get; set; }
public string? Creator { get; set; }
public int? CreatorEid { get; set; }
public string? Attachment { get; set; }
public InComplaintBusinessStatus? BusinessStatus { get; set; }
public RestoreType? RestoreType { get; set; }
}
public class InComplaintProLongDto
{
public int Id { get; set; }
public decimal Eid { get; set; }
public string Name { get; set; }
}
public class InComplaintAdjustDto
{
public int Id { get; set; }
public int Adjust { get; set; }
public int Eid { get; set; }
public string UserName { get; set; }
}
public class InComplaintImportDto
{
public string DeptName { get; set; }
///
/// 客户内诉日期
///
public DateTime? ComplaintDate { get; set; }
///
/// 内诉渠道
///
public string ComplaintChannel { get; set; }
///
/// 客户姓名
///
public string Cname { get; set; }
///
/// 资源id
///
public string Resid { get; set; }
///
/// 第一次投诉
///
public string Content { get; set; }
///
/// 投诉原因
///
public string Reasons { get; set; }
public string DueResult { get; set; }
public string ComplaintStatus { get; set; }
public string Remark { get; set; }
}
}