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
754 B
C#
17 lines
754 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 ICartonTrackService : IBaseService<SysHtStock>
|
|
{
|
|
public Hashtable getCartonTrackListByPage(String carton_no, String partNo, String partSpec, String locateType, String data, String data2, Pager pager, String direction, String sort, String enabled);
|
|
public List<CartonTrack> getExportList(String cartonNo, String partNo, String partSpec, String locateType, String startTime, String endTime, String enabled);
|
|
public List<KeyValueResult> getSelectCartonTrack();
|
|
public List<KeyValueResult> GetLocateType();
|
|
}
|
|
}
|