ComplianceServer/code/Hg.Core.Domain/Dto/InComplaint/InComplaintFollowUpDto.cs

49 lines
1.1 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.InComplaint
{
public class InComplaintFollowUpDto
{
public int Id { get; set; }
public string? ComplaintId { get; set; }
public string? Resid { get; set; }
public string? Cname { get; set; }
public InComplaintStatus? InComplaintStatus { get; set; }
public string? InComplaintStatusStr
{
get
{
return InComplaintStatus?.GetDescription();
}
}
public List<InComplaintFollowUpDetailDto>? Details { get; set; }
}
public class InComplaintFollowUpDetailDto
{
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; }
}
}