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 IPartMasterService : IBaseService { public Hashtable getPartMasterListByPage(String part_type, String part_no, String partSpec, string enabled, int factoryId, Pager pager, String direction, String sort); public int savePartMaster(SysPart htParams); public int updatePartMaster(SysPart htParams); public List getPartMaster(String part_id); public int deletePartMaster(String ids); public SysPart getPartByExistName(string partNo); public SysPart getPartByExistSpec(string partSpec); public List getSelectPartMaster(); public List getSelectPartMaster_Model_name(); public List getSelectPartLocation(); public string Isnull(string value); public List getSelectPartMaster_Enum(); public List getSelectPartMaster_Locate(); public List getSelectPartMaster_TMGZ(); public List getSelectPartMaster_Route(); public List getTableListByPage(String part_type, String part_no, Pager pager, String direction, String sort, Boolean isPage); public int EnablePartMaster(String part_id); public int DisablePartMaster(String part_id); public List getExportList(String partType, String partNo, String partSpec, String enabled, int factoryId); } }