callmeyan bc65188c0c update: 新增提示类型;弹窗样式统一;
fixed: 导出勘误表同一行校对数据顺序乱序;
2024-12-17 22:47:09 +08:00

24 lines
646 B
C#

using NPOI.XSSF.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIProofread
{
public class ExportConfig
{
public static readonly Dictionary<string, string> ErrorTypeMap = new Dictionary<string, string>()
{
{"first_choice","首选"},
{"now_called","现称"},
{"quoting_legal","引用法律条文时"},
{"incorrect_expression","表述有误"},
{"coinage","造字"},
{"serial_number","作为标题序号时"},
{"alien","异形词"},
};
}
}