Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr/WmsStockReportService.cs
2023-08-04 15:05:45 +08:00

31 lines
728 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using JNPF.VisualDev;
using JNPF.VisualDev.Entitys.Dto.VisualDevModelData;
using MimeKit.Cryptography;
using SqlSugar;
namespace Tnb.WarehouseMgr
{
/// <summary>
/// 库存报表服务类
/// </summary>
[OverideVisualDev(ModuleConsts.MODULE_WMSSTOCKREPORT_ID)]
public class WmsStockReportService:BaseWareHouseService
{
public WmsStockReportService()
{
OverideFuncs.GetListAsync = GetListAsync;
}
private async Task<dynamic> GetListAsync(VisualDevModelListQueryInput input)
{
return null;
}
}
}