51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
|
{
|
|
public class PrdMoFromQueryInput
|
|
{
|
|
/// <summary>
|
|
/// 当前页码:pageIndex.
|
|
/// </summary>
|
|
public int currentPage { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// 每页行数.
|
|
/// </summary>
|
|
public int pageSize { get; set; } = 50;
|
|
|
|
public string? mo_code { get; set; }
|
|
|
|
public string? mo_task_code { get; set; }
|
|
|
|
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; }
|
|
}
|
|
} |