|
|
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
|
|
|
//}
|
|
|
}
|