This commit is contained in:
he
2022-04-06 13:49:30 +08:00
parent 25555d92dd
commit dfd48719dd
3 changed files with 20 additions and 5 deletions
@@ -1,5 +1,6 @@
using IRaCIS.Application.Contracts;
using IRaCIS.Core.Application.Contracts;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -142,6 +143,12 @@ namespace IRaCIS.Core.Application.Service.Inspection.DTO
public class DataInspectionDto<T> : InspectionBase, IInspectionDTO, ISignDTO
{
public DataInspectionDto()
{
this.AuditInfo.JsonDetail= JsonConvert.SerializeObject(this.OptCommand);
}
public T OptCommand { get; set; }
}
@@ -207,7 +214,8 @@ namespace IRaCIS.Core.Application.Service.Inspection.DTO
public string ModuleTypeName { get; set; } = string.Empty;
public string SignText { get; set; } = string.Empty;
}