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.
67 lines
1.8 KiB
67 lines
1.8 KiB
4 days ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using SqlSugar;
|
||
|
namespace ReZero.SuperAPI.STD
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 对象组装表
|
||
|
///</summary>
|
||
|
[SugarTable("STD_OBJECT_ASSEMBLY")]
|
||
|
public class STD_OBJECT_ASSEMBLY
|
||
|
{
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:属性路径(对象[属性名])
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="OBJECT_PATH" ) ]
|
||
|
public string OBJECT_PATH { get; set; } = null!;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:表名
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="MAPPING_TABLE" ) ]
|
||
|
public string MAPPING_TABLE { get; set; } = null!;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:表归属于那(例如:系统内、医保)
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="ASSEMBLY_TYPE" ) ]
|
||
|
public string ASSEMBLY_TYPE { get; set; } = null!;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:STD_METHOD_CONFIG表ID
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="METHOD_REF" ) ]
|
||
|
public string METHOD_REF { get; set; } = null!;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:1 对象 2 列表
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="OBJECT_TYPE" ) ]
|
||
|
public int OBJECT_TYPE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:1 入参 2 出参
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="PARAMETR_TYPE" ) ]
|
||
|
public int PARAMETR_TYPE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:id
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="ID" ,IsPrimaryKey = true,IsIdentity = true) ]
|
||
|
public decimal ID { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|