@model WX.CRM.Model.DTO.InComplaintReplyDto
@{ ViewBag.Title = "Detail";
Layout = "~/Views/Shared/_form.cshtml";
}
@Html.Raw(Model.InComplaintBusinessStatusStr)
@if (Model.Restores != null && Model.Restores.Any())
{
foreach (var item in Model.Restores)
{
@Html.Raw(item.Creator)
if (!string.IsNullOrEmpty(item.Attachment))
{
}
}
}