19 lines
589 B
C#
19 lines
589 B
C#
using WX.CRM.IBLL.Base;
|
||
using WX.CRM.Model.Enum;
|
||
|
||
namespace WX.CRM.BLL.Base
|
||
{
|
||
public class SEQUENCES_BL : ISEQUENCES
|
||
{
|
||
/// <summary>
|
||
/// ntype=SmallTable时小表ID,估计小于5000条记录,ntype=LargeTable大表ID,估计大于5000条记录,默认为小表ID。
|
||
/// </summary>
|
||
/// <param name="ntype"></param>
|
||
/// <returns></returns>
|
||
public decimal Seq_base_get(PKIDType ntype = PKIDType.SmallTable, string conn = null)
|
||
{
|
||
return new DAL.Base.SEQUENCES_DAL().Seq_base_get(ntype, conn);
|
||
}
|
||
}
|
||
}
|