tijian_jichuang/Code/SOH.BLL.Contract/IBasic.cs
2025-02-20 11:54:48 +08:00

35 lines
944 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SOH.Entities;
using SOH.Data;
namespace SOH.BLL
{
/// <summary>
/// 获取表的最大值
/// </summary>
public interface IBasic
{
int GetMax(string tablename, int needcount);
/// <summary>
/// 获取条码号
/// </summary>
/// <param name="fddm">分店代码</param>
/// <param name="grortt">团体个人1团体0个人</param>
/// <param name="needcount">需要数量</param>
/// <returns></returns>
int gettmh(int fddm, int grortt, int needcount);
List<lis_jydl> GetAlljydl();
/// <summary>
/// 获取会员号
/// </summary>
/// <param name="fddm">分店代码</param>
/// <param name="needcount">需要数量</param>
/// <returns></returns>
int gethyh(int fddm, int needcount);
}
}