正向追溯相关接口

This commit is contained in:
2023-08-21 11:52:06 +08:00
parent 807f656792
commit 03b815824a
3 changed files with 138 additions and 23 deletions

View File

@@ -52,7 +52,34 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public string? workline_name { get; set; }
public string? workshop_name { get; set; }
public string? mbom_version { get; set; }
public string station_name { get; set; }
public string equip_code { get; set; }
}
/// <summary>
/// 工单追溯二级列表输出类
/// </summary>
public class PrdMoFromManListOutput
{
// /// <summary>
// /// 提报id
// /// </summary>
// public string id { get; set; }
//
// public string workgroup_name { get; set; }
public string employee_name { get; set; }
public string work_time { get; set; }
public DateTime? start_time { get; set; }
public DateTime? end_time { get; set; }
}
}