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