using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WCS_Client.Utility { /// /// 中文常量 /// public static partial class LangConst { public static string DefaultUser = "admin"; public static string DefaultPwd = "Aa123456"; public static string DefaultUserError = "默认系统用户不可修改和删除"; public static string SysError = "系统内部错误"; //WCS_User.cs public static string UserIsStop = "账户已被停用"; public static string PasswordError = "用户名或密码错误!"; public static string UserNotExists = "账号不存在!"; public static string Admin = "普通管理员"; public static string SysAdmin = "系统管理员"; //增删改查 public static string AddSuccess = "添加成功!"; public static string AddError = "添加失败!"; public static string DeleteSuccess = "删除成功!"; public static string DeleteError = "删除失败!"; public static string UpdateSuccess = "更新成功!"; public static string UpdateError = "更新失败!"; public static string SaveSuccess = "保存成功!"; public static string SaveError = "保存失败!"; public static string ImportSuccess = "导入成功!"; public static string ImportError = "导入失败!"; public static string ImportTemplateNotMatch = "(PS:可能模板不匹配)"; public static string ImportCheckErrorInfo = "(请查看输出的Excel错误信息)"; public static string ImportCheckTemplateIsRight = "(请检测是否模板错误)"; public static string ErrorInfo = "错误信息"; } }