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.2 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 IProduceStockService : IBaseService<GWorkorder>
{
public Hashtable GetSummary(string _where, Pager pager);
public List<GWorkorder> GetSummaryDtail(string _where, string typeID, ref DataTable dt);
public Hashtable GetDetail(string _where, Pager pager);
public Hashtable GetStatisticsData(string _where, Pager pager);
public Hashtable getProduceStockListByPage(String type_id, String CarNumber, String CarNumber2, String Date, String Date2, Pager pager, String direction, String sort);
public int saveProduceStock(SysPartCustOrder htParams);
public int updateProduceStock(SysPartCustOrder htParams);
public List<SysPartCustOrder> getProduceStock(String part_id);
public int deleteProduceStock(String ids);
public List<KeyValueResult> getType();
public Hashtable getTableListByPage(String part_no, String cust_order, Pager pager, String direction, String sort, Boolean isPage);
}
}