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
683 B
C#
20 lines
683 B
C#
using Estsh.Core.Base;
|
|
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 ISingleWarePrintDefineRepository : IBaseRepository<BaseEntity>
|
|
{
|
|
public List<GDps> getList(string strWhere, string filedOrder);
|
|
public List<SapMisco> GetOrderDetail(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public int GetOrderCount(string strWhere);
|
|
public int saveDPS(GDps htParams);
|
|
public String isExsitPart_no(String part_no);
|
|
public List<KeyValueResult> GetTaskList();
|
|
}
|
|
}
|