using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using WMS.Model.Base;
namespace WMS.IData.IBase
{
public interface ISKU
{
///
/// 获取规格
///
/// 规格
DataTable GetSKUDT(SKUModel model);
///
/// 插入规格信息
///
/// 规格Model
/// 规格编号
string InsertSKU(SKUModel model);
///
/// 修改规格信息
///
/// 规格Model
void UpdateSKU(SKUModel model);
///
/// 删除一个规格
///
/// 规格ID
void DeleteSKU(string SKU_ID);
///
/// 删除一个商品的规格
///
/// 商品ID
void DeleteSKUByGoods(string GOODS_ID);
}
}