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.
32 lines
1.6 KiB
C#
32 lines
1.6 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 IPartMasterService : IBaseService<SysPart>
|
|
{
|
|
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<SysPart> getPartMaster(String part_id);
|
|
public int deletePartMaster(String ids);
|
|
public SysPart getPartByExistName(string partNo);
|
|
public SysPart getPartByExistSpec(string partSpec);
|
|
public List<KeyValueResult> getSelectPartMaster();
|
|
public List<KeyValueResult> getSelectPartMaster_Model_name();
|
|
public List<KeyValueResult> getSelectPartLocation();
|
|
public string Isnull(string value);
|
|
public List<KeyValueResult> getSelectPartMaster_Enum();
|
|
public List<KeyValueResult> getSelectPartMaster_Locate();
|
|
public List<KeyValueResult> getSelectPartMaster_TMGZ();
|
|
public List<KeyValueResult> getSelectPartMaster_Route();
|
|
public List<PartMaster> 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<PartMaster> getExportList(String partType, String partNo, String partSpec, String enabled, int factoryId);
|
|
}
|
|
}
|