设备保养执行 复核 设备报废

This commit is contained in:
2023-05-25 12:02:02 +08:00
parent 76f3b0768b
commit 4d48d82fe5
8 changed files with 352 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class MaintainRecordRepeatInput
{
public string id { get; set; }
public string repeat_result { get; set; }
public string repeat_remark { get; set; }
public List<Dictionary<string,string>> details { get; set; }
}
}