using RG3.PF.Abstractions.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;

namespace  RG3.BO.BI.Bridge.Entity
{
    /// <summary>
    ///  其它组件扩展配置
    /// </summary>
    public class BridgeExtand : IEntity
    {

        /// <summary>
        /// "el-button
        /// </summary>
        public string Component { get; set; }

        /// <summary>
        /// 排序
        /// </summary>
        public int SortId { get; set; }


        /// <summary>
        /// 属性
        /// </summary>
        public Dictionary<string, object> Attrs { get; set; } = new Dictionary<string, object>();

        /// <summary>
        /// 样式
        /// </summary>
        public Dictionary<string, object> Styles { get; set; } = new Dictionary<string, object>();

        /// <summary>
        /// 显示位置 top left right bottom
        /// </summary>
        public string Position { get; set; }
    }
}
文档更新时间: 2022-01-19 06:35   作者:admin