平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
306 B

  1. //
  2. namespace SafeCampus.Core.Utils;
  3. /// <summary>
  4. /// 公共功能
  5. /// </summary>
  6. public static class CommonUtils
  7. {
  8. /// <summary>
  9. /// 获取唯一Id
  10. /// </summary>
  11. /// <returns></returns>
  12. public static long GetSingleId()
  13. {
  14. return YitIdHelper.NextId();
  15. }
  16. }