This commit is contained in:
DEVICE8\12494
2023-05-19 08:32:44 +08:00
354 changed files with 37154 additions and 54808 deletions

View File

@@ -0,0 +1,15 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class SpotInsRecordExecuteInput
{
public string id { get; set; }
public string attachment { get; set; }
public string result { get; set; }
public string result_remark { get; set; }
public List<Dictionary<string,string>> details { get; set; }
}
}

View File

@@ -0,0 +1,11 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class SpotInsRecordRepeatInput
{
public string id { get; set; }
public string repeat_result { get; set; }
public string repeat_remark { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class SpotInsRecordRepeatOutput
{
public EqpSpotInsRecordH model { get; set; }
public List<EqpSpotInsRecordD> details { get; set; }
}
}