1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using Long.Common.System;
- using Long.Dapper;
- namespace Long.DAO.System
- {
-
-
-
- public interface INextValueDatabase: IDatabase<NextValue>
- {
- #region 获取编码
-
-
-
-
-
-
-
-
-
- Task<string> GetCodeAsync(string prefix, string tableName, string fieldName, int defaultValue = 1, int length = 5);
- #endregion
- #region 获取日期编码
-
-
-
-
-
-
-
-
-
- Task<string> ExcuteGetCodeFromDateAsync(string prefix, string tableName, string fieldName, long defaultValue = 1, int length = 5);
- #endregion
- }
- }
|