This commit is contained in:
DEVICE8\12494
2023-05-12 22:58:38 +08:00
12 changed files with 924 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
using Tnb.ProductionMgr.Entities.Dto;
namespace Tnb.ProductionMgr.Interfaces
{
/// <summary>
/// 工单生成
/// </summary>
public interface IWorklineCommService
{
Task<dynamic> GetCartonQrcode(string workline);
}
}