维修管理

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,15 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class RepairOutApplyInput
{
public string id { get; set; }
public string repair_apply_id { get; set; }
public string equip_id { get; set; }
public string? supplier_id { get; set; }
public decimal? estimated_cost { get; set; }
public string? construction_period_requirement { get; set; }
public string out_apply_reason { get; set; }
public string? remark { get; set; }
}
}