模具保养计划执行模块代码提交
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
{
|
||||
public class ClosedownHistoryOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 停机开始时间
|
||||
/// </summary>
|
||||
public DateTime? closedown_start_time { get; set; }
|
||||
/// <summary>
|
||||
/// 停机结束时间
|
||||
/// </summary>
|
||||
public DateTime? closedown_end_time { get; set; }
|
||||
/// <summary>
|
||||
/// 停机时间
|
||||
/// </summary>
|
||||
public decimal? closedown_time { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using JNPF.Common.Filter;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
{
|
||||
/// <summary>
|
||||
/// 停机历史查询输入参数
|
||||
/// </summary>
|
||||
public class ClosedownHistoryQuery : PageInputBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 开始时间
|
||||
/// </summary>
|
||||
public DateTime? beginTime { get; set; }
|
||||
/// <summary>
|
||||
/// 结束时间
|
||||
/// </summary>
|
||||
public DateTime? endTime { get; set; }
|
||||
/// <summary>
|
||||
/// 设备名称
|
||||
/// </summary>
|
||||
public string eqpName { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -58,5 +58,19 @@ public partial class PrdCancelClosedownRecord : BaseEntity<string>
|
||||
/// 停机结束时间
|
||||
/// </summary>
|
||||
public DateTime? closedown_end_time { get; set; }
|
||||
/// <summary>
|
||||
/// 停机时间
|
||||
/// </summary>
|
||||
public decimal? closedown_time { get; set; }
|
||||
/// <summary>
|
||||
/// 设备编码
|
||||
/// </summary>
|
||||
public string eqp_code { get; set; }
|
||||
/// <summary>
|
||||
/// 设备名称
|
||||
/// </summary>
|
||||
public string eqp_name { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user