yanjinhui
3 天以前 8cdcf8cb6fecf101bd7dd1db2e44f0cf5ddc0fd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IWMsInfoServices
{
    public interface IInventory_BatchServices : IService<Dt_Inventory_Batch>
    {
        IRepository<Dt_Inventory_Batch> Repository { get; }
 
        WebResponseContent GetExpiredAndlow();
 
        WebResponseContent TransferInventory(int[] Keys);
    }
}