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 ICustomer
{
#region 获得客户信息
///
/// 获得客户信息
///
///
///
DataTable GetCustomer(CustomerModel customer);
#endregion
void AddCustomer(CustomerModel model);
///
/// 立体库使用货主
///
///
///
DataSet GetCustomer();
#region 客户信息数据 新增 更新
///
/// 客户信息数据进行增加 更新操作
///
/// 客户Model
/// 0:增加 1:修改
///
void UpdateCustomer(CustomerModel model);
#endregion
#region 删除客户信息
///
/// 删除客户信息
///
/// 客户编号ID
int execCustomerDel(string customer_id);
#endregion
#region 获取流水号
///
/// 获取流水号
///
///
string GetSerialNum();
#endregion
}
}