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.
24 lines
1.1 KiB
C#
24 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;
|
|
using System.Data;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface ITruckOrderPrintRepository : IBaseRepository<SysPartCustOrder>
|
|
{
|
|
public List<SysPartCustOrder> getList(string strWhere, string filedOrder);
|
|
public Hashtable getListByPage(String cust_pdline_name, String comtype_name, String StartCar_no, String EndCar_no, String date, String date2, int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public int saveTruckOrderPrint(SysPartCustOrder htParams);
|
|
public int updateTruckOrderPrint(SysPartCustOrder htParams);
|
|
public int deleteTruckOrderPrint(String part_id);
|
|
public List<KeyValueResult> getSelectTruckOrderPrint();
|
|
public List<KeyValueResult> getCust_pdline_nameListData();
|
|
public List<KeyValueResult> getType_nameListData(String cust_pdline_id);
|
|
/// <returns></returns>;
|
|
public List<TruckOrderPrint> getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
}
|
|
}
|