外包装入库申请

This commit is contained in:
2023-11-09 10:58:15 +08:00
parent 68efc42e31
commit 746e7f425d
12 changed files with 586 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class MarkingLabelInput
{
public string station_id { get; set; }
public string mark_code { get; set; }
public string label_code { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class TrayQrcodeInput
{
public string qrcode { get; set; }
public string station_id { get; set; }
}
}