using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using WMS.Model.SystemManage;
namespace WMS.IData.ISystemManage
{
///
/// 字典明细
///
public interface IDictionaryTab
{
///
/// 根据字典名称查询字典值
///
///
///
DataTable GetGetDictionaryTabName(string name);
///
/// 获取字典明细
///
/// 字典类型
///
DataTable GetDictionaryTab(string dictionaryType);
///
/// 插入或修改字典明细
///
/// 字典类型详细Model
/// 操作表示符 0:新增; 1:修改
void UpdateDictionaryTab(DictionaryTabModel dictionaryTabModel);
void InsertDictionTab(DictionaryTabModel dictionaryTabModel);
///
/// 删除字典明细
///
///
void DeleteDictionaryTab(string VC_DICTIONARY_TYPE);
///
/// 删除属于某字典类型的字典明细信息
///
/// 某字典类型
void DeleteDictionaryTabByDictionaryType(string dictionaryType);
}
}