You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/Vue.Net/VOL.Core/Enums/ErrorMessage.cs

50 lines
1.7 KiB
C#

2 years ago
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
using static Npgsql.PostgresTypes.PostgresCompositeType;
namespace VOL.Core.Enums
{
public struct ErrorMessage
{
public const string HeadChange = "业务状态已经发生变化,请先刷新再尝试做进一步操作";
public const string = "已审核通过,不可删除。";
public const string = "已审核通过,不能执行此操作!";
public const string = "只有录入状态的业务才能删除!";
public const string = "该业务目前不能执行该动作!";
public const string SaveOK = "保存成功";
}
//public class BookStructure
//{
// public ReadOnlyDictionary<string, string> Fields // Change Dictionary to ReadOnlyDictionary
// {
// get { return _roFields; } // Change '_fields' to '_roFields'
// }
// public BookStructure()
// {
// _fields = new Dictionary<string, string>();
// _roFields = new ReadOnlyDictionary<string, string>(_fields); // Added
// _fields.Add("1061", "初审提交");
// _fields.Add("1062", "初审通过");
// _fields.Add("10611", "初审驳回");
// _fields.Add("1064", "复核提交");
// _fields.Add("1065", "复核通过");
// _fields.Add("10641", "复核驳回");
// }
// private Dictionary<string, string> _fields;
// private ReadOnlyDictionary<string, string> _roFields; // Added
//}
}