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.

17 lines
696 B
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Services;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IProductDeliveryResultService : IBaseService<MesJisShipping>
{
public Hashtable getInQCListByPage(string pdlineCode, string partNo, string partSpec, string serialNumber, string beginCreateTime, string endCreateTime, Pager pager, String direction, String sort);
public List<ProductDeliveryResult> getSearchDataList(string pdlineCode, string partNo, string partSpec, string serialNumber, string beginCreateTime, string endCreateTime);
}
}