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.
26 lines
1.1 KiB
C#
26 lines
1.1 KiB
C#
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 IPartSNRuleDefineRepository : IBaseRepository<SysPartSnRule>
|
|
{
|
|
public List<SysPartSnRule> getList(string strWhere, string filedOrder);
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public Hashtable getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public int savePartSNRule(SysPartSnRule htParams);
|
|
public int updatePartSNRule(SysPartSnRule htParams);
|
|
public int deletePartSNRule(String ruid);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public List<KeyValueResult> getTypeData();
|
|
public String isExsitPart_no(String part_no);
|
|
public bool InsertData(List<PartSNRuleDefine> dt, string userID);
|
|
public int GetPartID(string partNo);
|
|
public bool ExistsSNRule(int partID);
|
|
}
|
|
}
|