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.

20 lines
933 B
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IInventTransQueryService : IBaseService<SysStockTrans>
{
public Hashtable getDPSListByPage(String partNo, String partSpec, String cartonNo,String refOrderNo, String transType, String destErpWarehouse, string startTime
, string endTime, Pager pager, String direction, String sort);
public List<InventTransQuery> getExportList(String partNo, String partSpec, String cartonNo,String refOrderNo, String transType, String destErpWarehouse, String startTime, String endTime);
public List<KeyValueResult> GetStockTransType();
public List<KeyValueResult> GetErpwarehouse();
public List<KeyValueResult> GetSrcLocate();
public List<KeyValueResult> Getuserinfo();
}
}