27 lines
787 B
C#
27 lines
787 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","造字"},
|
|
{"coinage_first_choice","造字 首选" },
|
|
{"coinage_first","造字 首选" },
|
|
{"serial_number","作为标题序号时"},
|
|
{"alien","异形词"},
|
|
{"term","规范术语" },
|
|
};
|
|
}
|
|
}
|