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.
25 lines
1.1 KiB
C#
25 lines
1.1 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;
|
|
using System.Data;
|
|
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IProduceSerchService : IBaseService<SysPartCustOrder>
|
|
{
|
|
public Hashtable getProduceSerchListByPage(String cust_pdline_id, String comtype_name, String Model, String Type, Pager pager, String direction, String sort, String factoryId, String enabled);
|
|
public int saveProduceSerch(SysPartCustOrder htParams);
|
|
public int updateProduceSerch(SysPartCustOrder htParams);
|
|
public List<SysPartCustOrder> getProduceSerch(String part_id);
|
|
public int deleteProduceSerch(String ids);
|
|
public List<KeyValueResult> getCust_pdline_nameListData();
|
|
public List<KeyValueResult> getType_nameListData(String cust_pdline_id);
|
|
public List<KeyValueResult> getModelListData(String Type);
|
|
public Hashtable getTableListByPage(String part_no, String cust_order, Pager pager, String direction, String sort, Boolean isPage);
|
|
}
|
|
}
|