平安校园
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.

CommonUtils.cs 306 B

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