IAppGuidManager.cs 431 B

1234567891011121314
  1. using System.Threading.Tasks;
  2. using ContractService.BaseInfo;
  3. namespace ContractService.CommonManager.AppGuids
  4. {
  5. public interface IAppGuidManager
  6. {
  7. string GetNextRecordId(DataLibType type);
  8. Task<string> GetNextRecordIdAsync(DataLibType type);
  9. DataLibType GetRecordIdType(string no);
  10. int GetGuidFromFile(AppGuidType type);
  11. Task<int> GetGuidFromFileAsync(AppGuidType type);
  12. }
  13. }