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

SysLogConst.cs 310 B

4 months ago
123456789101112131415161718192021222324252627
  1. 
  2. //
  3. namespace SafeCampus.System;
  4. /// <summary>
  5. /// 日志常量
  6. /// </summary>
  7. public class SysLogConst
  8. {
  9. /// <summary>
  10. /// 成功
  11. /// </summary>
  12. public const string SUCCESS = "SUCCESS";
  13. /// <summary>
  14. /// 成功
  15. /// </summary>
  16. public const string FAIL = "FAIL";
  17. }