1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Toolkits
- {
- public class WebErrorMsg
- {
- public static string Http404 = "请求地址不存在";
- public static string Http401 = "权限不足";
- public static string CodeDuplicate = "代码重复,请确认";
- public static string NameDuplicate = "名称重复,请确认";
- public static string InsertFailed = "插入数据库失败,请确认";
- public static string UpdateFailed = "更新数据库失败,请确认";
- public static string DeleteFailed = "从数据库中删除数据是啊比,请确认";
- }
- }
|