12 lines
247 B
C#
12 lines
247 B
C#
using Tnb.ProductionMgr.Entities.Dto;
|
|
|
|
namespace Tnb.ProductionMgr.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// 工单生成
|
|
/// </summary>
|
|
public interface IQrPrintService
|
|
{
|
|
Task<dynamic> GetCartonQrcode(string workline);
|
|
}
|
|
} |