This commit is contained in:
DEVICE8\12494
2023-06-02 08:39:53 +08:00
54 changed files with 1235 additions and 131 deletions

View File

@@ -0,0 +1,14 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipFileQueryOutput
{
public string id { get; set; }
public string attachment { get; set; }
public string create_id { get; set; }
public string create_id_id { get; set; }
public string create_time { get; set; }
public string equip_id { get; set; }
public string equip_id_id { get; set; }
public string file_name { get; set; }
}
}

View File

@@ -0,0 +1,21 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipMaintainRecordQueryOutput
{
public string id { get; set; }
public string attachment { get; set; }
public string create_time { get; set; }
public string equip_id { get; set; }
public string equip_id_id { get; set; }
public string execute_time { get; set; }
public string execute_user_id { get; set; }
public string repeat_remark { get; set; }
public string repeat_result { get; set; }
public string repeat_time { get; set; }
public string repeat_user_id { get; set; }
public string result { get; set; }
public string result_remark { get; set; }
public string maintain_tem_equip_id { get; set; }
public string status { get; set; }
}
}

View File

@@ -0,0 +1,19 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipQueryInput
{
public string equip_id { get; set; }
/// <summary>
/// 当前页码:pageIndex.
/// </summary>
public virtual int currentPage { get; set; } = 1;
/// <summary>
/// 每页行数.
/// </summary>
public virtual int pageSize { get; set; } = 50;
public string queryJson { get; set; }
}
}

View File

@@ -0,0 +1,16 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipRepairRecordQueryOutput
{
public string id { get; set; }
public string code { get; set; }
public string name { get; set; }
public string equip_id { get; set; }
public string apply_user_id { get; set; }
public string is_ugent { get; set; }
public string description { get; set; }
public string complete_time { get; set; }
public string repairer_id { get; set; }
public string repair_description { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipSparePartsInput
{
public string equip_id { get; set; }
public List<string> spare_parts_ids { get; set; }
}
}

View File

@@ -0,0 +1,13 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipSparePartsQueryOutput
{
public string id { get; set; }
public string type_code { get; set; }
public string type_name { get; set; }
public string code { get; set; }
public string name { get; set; }
public string specification { get; set; }
}
}

View File

@@ -0,0 +1,20 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipSpotInsRecordQueryOutput
{
public string id { get; set; }
public string attachment { get; set; }
public string create_time { get; set; }
public string equip_id { get; set; }
public string repeat_remark { get; set; }
public string repeat_result { get; set; }
public string repeat_time { get; set; }
public string repeat_user_id { get; set; }
public string result { get; set; }
public string result_remark { get; set; }
public string spot_ins_tem_equip_id { get; set; }
public string spot_record_date_time { get; set; }
public string spot_record_user_id { get; set; }
public string status { get; set; }
}
}

View File

@@ -0,0 +1,10 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipTechnologyParameterQueryOutput
{
public string id { get; set; }
public string name { get; set; }
public string definition { get; set; }
public string remark { get; set; }
}
}

View File

@@ -0,0 +1,18 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class SubEquipQueryOutput
{
public string code { get; set; }
public string create_id { get; set; }
public string create_id_id { get; set; }
public string create_time { get; set; }
public string equip_id { get; set; }
public string equip_id_id { get; set; }
public string id { get; set; }
public string modify_id { get; set; }
public string modify_time { get; set; }
public string name { get; set; }
public string org_id { get; set; }
public string specification { get; set; }
}
}