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.
20 lines
888 B
C#
20 lines
888 B
C#
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 IMESOD10Service : IBaseService<SysPartCustOrder>
|
|
{
|
|
public Hashtable getMESOD10ListByPage(String QiShiHuoYunDan, String JieShuHuoYunDan, Pager pager, String direction, String sort, String enabled);
|
|
public int saveMESOD10(SysPartCustOrder htParams);
|
|
public int updateMESOD10(SysPartCustOrder htParams);
|
|
public List<SysPartCustOrder> getMESOD10(String part_id);
|
|
public int deleteMESOD10(String ids);
|
|
public List<KeyValueResult> GetTerminalName();
|
|
public List<MESOD> getTableListByPage(String locationDate, String terminal_name, String Date, String Date2, Pager pager, String direction, String sort, Boolean isPage);
|
|
}
|
|
}
|