31 lines
646 B
C#
31 lines
646 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using WMS.Model.Base;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.IBase
|
|||
|
|
{
|
|||
|
|
interface IAreaGoodsData
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 新增物料库区
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="areaGoods"></param>
|
|||
|
|
void InsertAreaGoods(AreaGoodsModel areaGoods);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除库区物料信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="areaGoods"></param>
|
|||
|
|
void DelAreaGoods(AreaGoodsModel areaGoods);
|
|||
|
|
|
|||
|
|
|
|||
|
|
System.Data.DataTable GetAreaGoods(AreaGoodsModel areaGoods);
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|