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
623 B
C#
16 lines
623 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IStockBarcodePrintService : IBaseService<SysStock>
|
|
{
|
|
public Hashtable getListByPage(string cartonNo,string refOrderNo, string status, string lotno, string locateId, string zoneId, string beginCreateTime, string endCreateTime, int factoryId, Pager pager, String direction, String sort);
|
|
public List<KeyValueResult> getLocateList();
|
|
public List<KeyValueResult> getZoneList();
|
|
public String print(String ids);
|
|
}
|
|
}
|