18 lines
586 B
C#
18 lines
586 B
C#
using WX.CRM.IBLL.YunWx;
|
||
|
||
namespace WX.CRM.BLL.YunWx
|
||
{
|
||
public class YunSEQuences_BL : IYunSEQuences
|
||
{
|
||
/// <summary>
|
||
/// ntype=SmallTable时小表ID,估计小于5000条记录,ntype=LargeTable大表ID,估计大于5000条记录,默认为小表ID。
|
||
/// </summary>
|
||
/// <param name="ntype"></param>
|
||
/// <returns></returns>
|
||
public decimal Seq_base_get(WX.CRM.Model.Enum.PKIDType ntype = WX.CRM.Model.Enum.PKIDType.SmallTable)
|
||
{
|
||
return new DAL.YunWx.YUNSEQUENCES_DAL().Seq_base_get(ntype);
|
||
}
|
||
}
|
||
}
|