You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
3.1 KiB
110 lines
3.1 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using SqlSugar; |
|
namespace medical.transfomer.entity |
|
|
|
{ |
|
/// <summary> |
|
/// 对象映射关系表 |
|
///</summary> |
|
[SugarTable("STD_OBJECT_MAPPING")] |
|
public class STD_OBJECT_MAPPING |
|
{ |
|
|
|
|
|
/// <summary> |
|
/// 备 注:主键 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] |
|
public decimal? ID { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:本地系统名称(如姓名 年龄) |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "SYSTEM_NAME")] |
|
public string? SYSTEM_NAME { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:本地系统字段名(如name age) |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "SYSTEM_FIELD")] |
|
public string? SYSTEM_FIELD { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:对接系统名称 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "INTERFACE_NAME")] |
|
public string? INTERFACE_NAME { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:对接系统字段名 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "INTERFACE_FIELD")] |
|
public string? INTERFACE_FIELD { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:对接系统表中文名 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "OBJECT_TABLE_CNNAME")] |
|
public string? OBJECT_TABLE_CNNAME { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:本地系统表中文名 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "SYSTEM_TABLE_CNNAME")] |
|
public string? SYSTEM_TABLE_CNNAME { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:本地系统表英文名 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "SYSTEM_TABLE_NAME")] |
|
public string? SYSTEM_TABLE_NAME { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:本地系统字段类型 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "SYSTEM_FIELD_TYPE")] |
|
public string? SYSTEM_FIELD_TYPE { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:本地系统字典名称 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "SYSTEM_DICT_NAME")] |
|
public string? SYSTEM_DICT_NAME { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:对接系统字段类型 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "OBJECT_FIELD_TYPE")] |
|
public string? OBJECT_FIELD_TYPE { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:对接系统字典名称 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "OBJECT_DICT_NAME")] |
|
public string? OBJECT_DICT_NAME { get; set; } |
|
|
|
/// <summary> |
|
/// 备 注:对接系统表英文名 |
|
/// 默认值: |
|
///</summary> |
|
[SugarColumn(ColumnName = "OBJECT_TABLE_NAME")] |
|
public string? OBJECT_TABLE_NAME { get; set; } |
|
|
|
|
|
} |
|
|
|
} |