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
629 B
C#

11 months ago
using Admin.Core.Common;
using Admin.Core.IService;
using Admin.Core.Model;
using Admin.Core.Model.ViewModels;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Admin.Core.IService
{
/// <summary>
/// IHw_WarehouseServices
/// </summary>
public interface IHw_WarehouseServices : IBaseServices<Hw_Warehouse>
{
11 months ago
Task<WarehouseView> QueryByCode(string code,string planId);
11 months ago
Task<bool> UpdatePlcState(KettleView view);
10 months ago
Task<BarrelView> GetXlInfo(string kettleBarCode, string planId, string code);
11 months ago
Task<List<string>> GetWarehousePlan(string code);
11 months ago
}
}