BaoKai_202508-Wms-Jingwang..../WMS.IData/IBase/ICustomer.cs
2025-08-24 09:35:55 +08:00

54 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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