WebErrorMsg.cs 658 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Toolkits
  5. {
  6. public class WebErrorMsg
  7. {
  8. public static string Http404 = "请求地址不存在";
  9. public static string Http401 = "权限不足";
  10. public static string CodeDuplicate = "代码重复,请确认";
  11. public static string NameDuplicate = "名称重复,请确认";
  12. public static string InsertFailed = "插入数据库失败,请确认";
  13. public static string UpdateFailed = "更新数据库失败,请确认";
  14. public static string DeleteFailed = "从数据库中删除数据是啊比,请确认";
  15. }
  16. }