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