using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace YbTest.Models { /// /// 对象映射关系表 /// [SugarTable("STD_OBJECT_MAPPING")] public class ObjectMapping { /// /// 备 注:主键 /// 默认值: /// [SugarColumn(ColumnName="ID" ,IsPrimaryKey = true,IsIdentity = true) ] public decimal Id { get; set; } /// /// 备 注:本地系统名称(如姓名 年龄) /// 默认值: /// [SugarColumn(ColumnName="SYSTEM_NAME" ) ] public string? SystemName { get; set; } /// /// 备 注:本地系统字段名(如name age) /// 默认值: /// [SugarColumn(ColumnName="SYSTEM_FIELD" ) ] public string? SystemField { get; set; } /// /// 备 注:对接系统名称 /// 默认值: /// [SugarColumn(ColumnName="INTERFACE_NAME" ) ] public string? InterfaceName { get; set; } /// /// 备 注:对接系统字段名 /// 默认值: /// [SugarColumn(ColumnName="INTERFACE_FIELD" ) ] public string? InterfaceField { get; set; } /// /// 备 注:对接系统表英文名 /// 默认值: /// [SugarColumn(ColumnName="OBJECT_TABLE_NAME" ) ] public string? ObjectTableName { get; set; } /// /// 备 注:对接系统表中文名 /// 默认值: /// [SugarColumn(ColumnName="OBJECT_TABLE_CNNAME" ) ] public string? ObjectTableCnName { get; set; } /// /// 备 注:本地系统表中文名 /// 默认值: /// [SugarColumn(ColumnName="SYSTEM_TABLE_CNNAME" ) ] public string? SystemTableCnName { get; set; } /// /// 备 注:本地系统表英文名 /// 默认值: /// [SugarColumn(ColumnName="SYSTEM_TABLE_NAME" ) ] public string? SystemTableName { get; set; } /// /// 备 注:本地系统字段类型 /// 默认值: /// [SugarColumn(ColumnName="SYSTEM_FIELD_TYPE" ) ] public string? SystemFieldType { get; set; } /// /// 备 注:本地系统字典名称 /// 默认值: /// [SugarColumn(ColumnName="SYSTEM_DICT_NAME" ) ] public string? SystemDictName { get; set; } /// /// 备 注:对接系统字段类型 /// 默认值: /// [SugarColumn(ColumnName="OBJECT_FIELD_TYPE" ) ] public string? ObjectFieldType { get; set; } /// /// 备 注:对接系统字典名称 /// 默认值: /// [SugarColumn(ColumnName="OBJECT_DICT_NAME" ) ] public string? ObjectDictName { get; set; } } }