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.
19 lines
664 B
C#
19 lines
664 B
C#
using Aspose.Cells;
|
|
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 IBOMSearchService : IBaseService<SysBom>
|
|
{
|
|
public Hashtable getListByPage(String partNo, string partSpec, string itemPartNo, string itemPartSpec, string enabled, string factoryId, Pager pager,string direction,string sort);
|
|
public List<SysPart> GetPartInfo(string part_no);
|
|
public List<BOMDefine> exportBOMInfo(String bomType, String partId);
|
|
public List<BOMDefine> exportALL(String bomType);
|
|
}
|
|
}
|