You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
384 B
C#

using DS.WMS.PrintApi.Model;
using System.Threading.Tasks;
namespace DS.WMS.PrintApi.Service
{
public interface IOpenPrintService
{
/// <summary>
/// 获取Json打印信息
/// </summary>
/// <param name="req"></param>
/// <returns></returns>
public Task<PrintDataResult> GetOpenJsonPrintInfo(OpenJsonPrintReq req);
}
}