ISerialNumberAppService.cs 530 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Volo.Abp.Application.Services;
  7. namespace Business.ResourceExamineManagement
  8. {
  9. /// <summary>
  10. /// 流水号生成
  11. /// </summary>
  12. public interface ISerialNumberAppService : IApplicationService
  13. {
  14. /// <summary>
  15. /// 生成流水号
  16. /// </summary>
  17. /// <param name="id"></param>
  18. /// <returns></returns>
  19. string GetSerialNumber(long id);
  20. }
  21. }