47 lines
1022 B
C#
47 lines
1022 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Complaint.Domain.Dto
|
|
{
|
|
public class ComplaintDetailDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int Fid { get; set; }
|
|
|
|
public int? Deptid { get; set; }
|
|
|
|
public string? Resid { get; set; }
|
|
|
|
public string Uname { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public ComplaintStatus Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public string StatusStr { get
|
|
{
|
|
return Status.GetDescription();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 风险标记
|
|
/// </summary>
|
|
public List<ComplaintLogDetailDto>? ComplaintLogDetails { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 跟进情况
|
|
/// </summary>
|
|
public List<ComplaintFollowDetailDto>? ComplaintFollowDetails { get; set; }
|
|
}
|
|
}
|