pad端andon相关接口

This commit is contained in:
2023-09-28 17:35:34 +08:00
parent 73d773c03f
commit b17e4b6deb
10 changed files with 570 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class AddAndonInput
{
public string andon_type_id { get; set; }
public string andon_info_id { get; set; }
public string andon_breakdown_id { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class AndonPadListInput
{
public string andon_type_id { get; set; }
/// <summary>
/// 页码.
/// </summary>
public int currentPage { get; set; }
/// <summary>
/// 页容量.
/// </summary>
public int pageSize { get; set; }
}
}

View File

@@ -0,0 +1,15 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class AndonPadListOutput
{
public string id { get; set; }
public string andon_info_name { get; set; }
public string promoter_name { get; set; }
public string repair_name { get; set; }
public string? promoter_time { get; set; }
public string? response_time { get; set; }
public string? start_repair_time { get; set; }
public string? end_repair_time { get; set; }
public string? confirm_time { get; set; }
}
}