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.
31 lines
1.5 KiB
C#
31 lines
1.5 KiB
C#
using Dapper;
|
|
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 IPDLineDefineService : IBaseService<SysPdline>
|
|
{
|
|
public Hashtable getPDLineListByPage(String pdlineCode, String pdlineName, int factoryid, Pager pager, String direction, String sort,string enabled);
|
|
public List<SysZone> getSelectZone();
|
|
public List<SysLocate> getSelectLocate();
|
|
public List<KeyValueResult> getSelectSrcZone(int factoryId);
|
|
public List<KeyValueResult> getSelectSrcLocate(string zone_name, int factoryId);
|
|
public List<KeyValueResult> getSelectDestZone(int factoryId);
|
|
public List<KeyValueResult> getSelectDestLocate(string zone_name, int factoryId);
|
|
public int savePdline(SysPdline htParams);
|
|
public int updatePdline(SysPdline htParams);
|
|
public Hashtable getPdlineDetail(String pdline_id);
|
|
public List<SysPart> GetPartInfo(string part_no);
|
|
public List<SysLocate> GetLocateInfo(string locateName);
|
|
public int deleteMenu(String ids);
|
|
public int EnablePdline(String ids);
|
|
public int DisablePdline(String ids);
|
|
public List<PDLineDefine> getExportList(string pdlineCode, string pdlineName, string enabled, int factoryid);
|
|
public Hashtable ImportExcel(List<PDLineDefine> inputStream, int factoryId, string factoryCode, int empId);
|
|
}
|
|
}
|