1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| using JiepeiWMS.IServices.BASE;
| using JiepeiWMS.Model;
| using JiepeiWMS.Model.Models;
| using System;
| using System.Linq.Expressions;
| using System.Threading.Tasks;
|
| namespace JiepeiWMS.IServices
| {
| /// <summary>
| /// IWMCheckInfoServices
| /// </summary>
| public interface IWMCheckInfoServices : IBaseServices<WMCheckInfo>
| {
| Task<PageModel<WMCheckInfo>> QueryPage(Expression<Func<WMCheckInfo, Department, bool>> whereExpression,
| int intPageIndex = 1, int intPageSize = 20, string strOrderByFileds = null);
|
| }
| }
|
|