liuying
2025-09-24 6efa5f6ca7536a37e3af3592bb42db63bcb8371d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using iWare.Wms.Core.Util.LowCode.Front.Model;
using Furion.Extras.iWare.Wms.Util.LowCode.Front.Att;
using Furion.Extras.iWare.Wms.Util.LowCode.Front.Interface;
 
namespace Furion.Extras.iWare.Wms.Util.LowCode.Front
{
    [FrontType("divider")]
    public class Front_Divider : IFront
    {
        public string Key { get; set; }
        public string Label { get; set; }
        public string Type { get; set; }
        public string Icon { get; set; }
        public string Model { get; set; }
 
        /// <summary>
        /// 分割线配置
        /// </summary>
        public Front_Divider_Options Options { get; set; }
 
        public ViewDynamic Dynamic
        { get { return null; } }
    }
 
    public class Front_Divider_Options
    {
        /// <summary>
        /// 标签位置
        /// </summary>
        public string Orientation { get; set; }
    }
}