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.
25 lines
865 B
C#
25 lines
865 B
C#
using Admin.Core.Common;
|
|
using Admin.Core.IService;
|
|
using Admin.Core.Model;
|
|
using Admin.Core.Model.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.IService
|
|
{
|
|
/// <summary>
|
|
/// IHw_WarehouseServices
|
|
/// </summary>
|
|
public interface IHw_WarehouseServices : IBaseServices<Hw_Warehouse>
|
|
{
|
|
Task<WarehouseView> QueryByCode(string code,string planId);
|
|
Task<bool> UpdatePlcState(KettleView view);
|
|
Task<bool> UpdatePlcState(string code,int state);
|
|
Task<string> RealWeightInfo(string WeightNo);
|
|
Task<BarrelView> GetXlInfo(string kettleBarCode, string planId, string code);
|
|
Task<List<string>> GetWarehousePlan(string code);
|
|
|
|
Task<bool> InsertXLPlanInfo(DateTime planDate, string recipeGUID, string batch, string productName);
|
|
}
|
|
} |