using Model.ModelVm.DataVm;
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Entity.DataEntity;
namespace WMS.IBLL.IDataServer
{
public interface IStockInfoServer
{
///
/// 每日凌晨自动执行当前方法
/// 添加库存总表到库存信息
///
///
string ByDayInsertStock();
///
/// 获取对应天数信息
///
///
///
List GetDataStockInfo(string StartDate);
///
/// 根据出入库新增或修改信息
///
/// 类型 0:入库 1:出库
/// 入库或出库数量
/// 是否寄存 0:是 1:否
/// 物料编码
///
bool AddOrUptStockInfo(string type, decimal qty, string isDeposit, string skuNo);
}
}