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.
18 lines
603 B
C#
18 lines
603 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 IProductAbnormalConsumeService : IBaseService<GSnStatus>
|
|
{
|
|
public List<GSnStatus> GetDetailData(string aWhere, Pager pager, ref int totalCount);
|
|
|
|
public List<ProductAbnormalConsume> getTableListByPage(string aWhere, Pager pager, ref int totalCount);
|
|
public List<KeyValueResult> GetModelName(string typeName);
|
|
public List<KeyValueResult> GetTypeName();
|
|
}
|
|
}
|