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.
28 lines
1.1 KiB
C#
28 lines
1.1 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;
|
|
using System.Data;
|
|
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IOutsourceBomRepository : IBaseRepository<WmsOutsourceBom>
|
|
{
|
|
public List<WmsOutsourceBom> getList(string strWhere);
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public int saveOutsourceBom(WmsOutsourceBom ht);
|
|
public int updateOutsourceBom(WmsOutsourceBom ht);
|
|
public int deleteOutsourceBom(String ruid);
|
|
public List<SysPart> GetPartInfo(string part_no);
|
|
public List<KeyValueResult> GetpartInfo();
|
|
public int EnableOutsourceBom(String ruid);
|
|
public int DisableOutsourceBom(String ruid);
|
|
public WmsOutsourceBom ifExistsOutsourceBom(string zoneName, string vendorCode, string partNo);
|
|
public List<WmsOutsourceBom> getExportList(string strwhere, string orderBy);
|
|
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
|
|
}
|
|
}
|