维修管理

This commit is contained in:
2023-05-19 17:39:09 +08:00
parent 59769a91d5
commit 9b091e3a11
14 changed files with 858 additions and 413 deletions

View File

@@ -0,0 +1,17 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class RepairDelayInput
{
public string repair_apply_id { get; set; }
public string equip_id { get; set; }
public string repair_request_sender_id { get; set; }
public string repair_sender_id { get; set; }
public DateTime expected_time { get; set; }
public string delay_reason { get; set; }
}
}