using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace WMS.IData.IBase
{
public interface IAddressArea
{
///
/// 获取区域信息
///
///
///
DataTable GetAddressArea(Model.Base.AddressAreaModel model);
///
/// 新增或修改区域信息
///
///
///
///
int execAddressAreaAddUpdate(Model.Base.AddressAreaModel model, int flg);
///
/// 删除区域信息
///
///
///
int execAddressAreaDel(string id);
///
/// 通过省市区名称获取省市区编号
///
///
///
DataTable GetAddressArea(string province, string city, string district);
}
}