TG.WXCRM.V4/IBLL/Base/ISEQUENCES.cs

21 lines
617 B
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 WX.CRM.Model.Enum;
namespace WX.CRM.IBLL.Base
{
public interface ISEQUENCES
{
/// <summary>
/// ntype=SmallTable时小表ID估计小于5000条记录ntype=LargeTable大表ID估计大于5000条记录,默认为小表ID。
/// </summary>
/// <param name="ntype"></param>
/// <returns></returns>
decimal Seq_base_get(PKIDType ntype = PKIDType.SmallTable, string conn = null);
/// <summary>
/// 从合规系统中统一获取主键ID
/// </summary>
/// <returns></returns>
decimal Seq_master_get();
}
}