using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace medical.transfomer.entity
{
    /// 
    /// 对象组装表
    ///
    [SugarTable("STD_OBJECT_ASSEMBLY")]
    public class STD_OBJECT_ASSEMBLY
    {
        
     
        /// 
        /// 备  注:属性路径(对象[属性名])
        /// 默认值:
        ///
        [SugarColumn(ColumnName="OBJECT_PATH" ) ]
        public string OBJECT_PATH  { get; set;  } = null!;
     
        /// 
        /// 备  注:表名
        /// 默认值:
        ///
        [SugarColumn(ColumnName="MAPPING_TABLE" ) ]
        public string MAPPING_TABLE  { get; set;  } = null!;
     
        /// 
        /// 备  注:表归属于那(例如:系统内、医保)
        /// 默认值:
        ///
        [SugarColumn(ColumnName="ASSEMBLY_TYPE" ) ]
        public string ASSEMBLY_TYPE  { get; set;  } = null!;
     
        /// 
        /// 备  注:STD_METHOD_CONFIG表ID
        /// 默认值:
        ///
        [SugarColumn(ColumnName="METHOD_REF" ) ]
        public string METHOD_REF  { get; set;  } = null!;
     
        /// 
        /// 备  注:1 对象 2 列表
        /// 默认值:
        ///
        [SugarColumn(ColumnName="OBJECT_TYPE" ) ]
        public int OBJECT_TYPE  { get; set;  } 
     
        /// 
        /// 备  注:1 入参 2 出参
        /// 默认值:
        ///
        [SugarColumn(ColumnName="PARAMETR_TYPE" ) ]
        public int PARAMETR_TYPE  { get; set;  } 
     
        /// 
        /// 备  注:id
        /// 默认值:
        ///
        [SugarColumn(ColumnName="ID" ,IsPrimaryKey = true,IsIdentity = true) ]
        public decimal ID  { get; set;  } 
    
    }
    
}