反向追溯相关接口

This commit is contained in:
2023-08-25 16:36:42 +08:00
parent d5a4529d71
commit 24606bab04
2 changed files with 212 additions and 68 deletions

View File

@@ -18,4 +18,34 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public string? barcode { get; set; }
}
public class PrdMoFromTwoQueryInput
{
public string mo_id { get; set; }
public string mo_task_code { get; set; }
public string barcode { get; set; }
}
public class PrdMoFromThreeQueryInput
{
public string mo_task_id { get; set; }
public string mo_task_code { get; set; }
public string barcode { get; set; }
}
public class PrdMoFromTabQueryInput
{
public string mo_task_id { get; set; }
public string barcode { get; set; }
}
public class PrdMoReverseFromQueryInput
{
public string barcode { get; set; }
}
public class PrdMoReverseFromOutInfoQueryInput
{
public string feeding_detail_id { get; set; }
}
}