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.
35 lines
1.8 KiB
C#
35 lines
1.8 KiB
C#
using Dapper;
|
|
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IPDLineDefineRepository : IBaseRepository<SysPdline>
|
|
{
|
|
public List<SysPdline> getList(string strWhere, string filedOrder);
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public List<SysZone> getSelectZone();
|
|
public List<SysLocate> getSelectLocate();
|
|
public SysWarehouse getSelectWarehouse(string warehouseName, int factoryId);
|
|
public SysZone getSelectZone(string zoneName, int factoryId);
|
|
public SysLocate getSelectLocate(string locateName, int factoryId);
|
|
public List<KeyValueResult> getSelectSrcZone(int factoryId);
|
|
public List<KeyValueResult> getSelectSrcLocate(string zone_Id, int factoryId);
|
|
public List<KeyValueResult> getSelectDestZone(int factoryId);
|
|
public List<KeyValueResult> getSelectDestLocate(string zone_Id, int factoryId);
|
|
public int savePdline(SysPdline htParams);
|
|
public int updatePdline(SysPdline htParams);
|
|
public List<SysPart> GetPartInfo(string part_no);
|
|
public List<SysLocate> GetLocateInfo(string locateName);
|
|
public int deleteMenu(String pdline_id);
|
|
public int EnablePdLine(String pdlineId);
|
|
public int DisablePdline(String pdlineId);
|
|
public List<SysPdline> ifExistsPdLine(string pdlineCode, string srcZoneName, string destZoneName, string destLocateName);
|
|
public List<PDLineDefine> getExportList(string strwhere,string orderBy);
|
|
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
|
|
}
|
|
}
|