using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using SqlSugar;
|
|
namespace WIDESEA_Model.Models
|
{
|
/// <summary>
|
/// 字符映射表
|
/// </summary>
|
[SugarTable(nameof(Dt_CharMapping), TableDescription = "字符映射表")]
|
public class Dt_CharMapping
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
/// <summary>
|
/// 输入字符
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 1, ColumnDescription = "输入字符")]
|
public string InputChar { get; set; } = null!;
|
|
/// <summary>
|
/// 映射字符
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 1, ColumnDescription = "映射字符")]
|
public string OutputChar { get; set; } = null!;
|
|
/// <summary>
|
/// 映射偏移量
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "映射偏移量")]
|
public int ShiftFactor { get; set; }
|
}
|
}
|