49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto.OutComplaint
|
|
{
|
|
public class OutComplaintFollowUpDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? ComplaintId { get; set; }
|
|
|
|
public string? Resid { get; set; }
|
|
|
|
public string? Cname { get; set; }
|
|
|
|
public OutComplaintStatus? OutComplaintStatus { get; set; }
|
|
|
|
public string? OutComplaintStatusStr
|
|
{
|
|
get
|
|
{
|
|
return OutComplaintStatus?.GetDescription();
|
|
}
|
|
}
|
|
|
|
public List<OutComplaintFollowUpDetailDto>? Details { get; set; }
|
|
}
|
|
|
|
public class OutComplaintFollowUpDetailDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Index { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
|
|
public string? Follow { get; set; }
|
|
|
|
public string? Creator { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
public string? Updater { get; set; }
|
|
public DateTime? UpdateTime { get; set; }
|
|
}
|
|
}
|