41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
namespace WMS.IData.IBase
|
|
{
|
|
public interface IAddressArea
|
|
{
|
|
/// <summary>
|
|
/// 获取区域信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataTable GetAddressArea(Model.Base.AddressAreaModel model);
|
|
|
|
/// <summary>
|
|
/// 新增或修改区域信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <param name="flg"></param>
|
|
/// <returns></returns>
|
|
int execAddressAreaAddUpdate(Model.Base.AddressAreaModel model, int flg);
|
|
|
|
/// <summary>
|
|
/// 删除区域信息
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
int execAddressAreaDel(string id);
|
|
|
|
/// <summary>
|
|
/// 通过省市区名称获取省市区编号
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataTable GetAddressArea(string province, string city, string district);
|
|
}
|
|
}
|