重写模具保养
This commit is contained in:
@@ -9,6 +9,10 @@ namespace Tnb.EquipMgr.Entities.Dto
|
||||
public string? create_time { get; set; }
|
||||
public string? equip_id { get; set; }
|
||||
public string? equip_id_id { get; set; }
|
||||
|
||||
public string? mold_id { get; set; }
|
||||
public string? mold_id_id { get; set; }
|
||||
|
||||
public string? execute_time { get; set; }
|
||||
public string? execute_user_id { get; set; }
|
||||
public string? repeat_remark { get; set; }
|
||||
|
||||
@@ -3,6 +3,8 @@ namespace Tnb.EquipMgr.Entities.Dto
|
||||
public class EquipQueryInput
|
||||
{
|
||||
public string equip_id { get; set; } = string.Empty;
|
||||
|
||||
public string mold_id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 当前页码:pageIndex.
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
namespace Tnb.EquipMgr.Entities.Dto
|
||||
{
|
||||
public class ToolMoldMaintainPlanRunListOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string plan_code { get; set; }
|
||||
public string mode { get; set; }
|
||||
public string status { get; set; }
|
||||
public string create_id { get; set; }
|
||||
public string create_time { get; set; }
|
||||
public string plan_start_date { get; set; }
|
||||
public string plan_end_date { get; set; }
|
||||
public string remark { get; set; }
|
||||
public string starter_id { get; set; }
|
||||
public string act_start_date { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
namespace Tnb.EquipMgr.Entities.Dto
|
||||
{
|
||||
public class ToolMoldMaintainRecordListOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string mold_id { get; set; }
|
||||
public string mold_id_id { get; set; }
|
||||
public string status { get; set; }
|
||||
public string result { get; set; }
|
||||
public string result_remark { get; set; }
|
||||
public string repeat_result { get; set; }
|
||||
public string repeat_remark { get; set; }
|
||||
public string create_time { get; set; }
|
||||
public string execute_time { get; set; }
|
||||
public string repeat_user_id { get; set; }
|
||||
public string repeat_user_id_id { get; set; }
|
||||
public string execute_user_id { get; set; }
|
||||
public string execute_user_id_id { get; set; }
|
||||
public string repeat_time { get; set; }
|
||||
public string last_execute_time { get; set; }
|
||||
|
||||
public DateTime? date_repeat_time { get; set; }
|
||||
public DateTime? date_create_time { get; set; }
|
||||
public DateTime? date_execute_time { get; set; }
|
||||
public DateTime? date_last_execute_time { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Tnb.EquipMgr.Entities.Dto
|
||||
{
|
||||
public class ToolMoldMaintainRecordRepeatOutput
|
||||
{
|
||||
public ToolMoldMaintainRecordH? model { get; set; }
|
||||
|
||||
public List<ToolMoldMaintainRecordD>? details { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Tnb.EquipMgr.Entities.Dto
|
||||
{
|
||||
public class ToolTemPublishInput
|
||||
{
|
||||
public string? id { get; set; }
|
||||
|
||||
public string[]? moldIds { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user