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
using Furion.DatabaseAccessor;
using Furion.Extras.iWare.Wms.Util.LowCode.Front.Att;
using Furion.Extras.iWare.Wms.Util.LowCode.Front.Model;
 
namespace Furion.Extras.iWare.Wms.Util.LowCode.Front
{
    [FrontType("switch")]
    [FrontTypeBindDatabase(DbProvider.SqlServer, typeof(bool))]
    public class Front_Switch : Front_Base<Front_Switch_Options>
    {
    }
 
    public class Front_Switch_Options
    {
        /// <summary>
        /// 默认值
        /// </summary>
        public bool DefaultValue { get; set; }
 
        /// <summary>
        /// 隐藏
        /// </summary>
        public bool Hidden { get; set; }
 
        /// <summary>
        /// 禁用
        /// </summary>
        public bool Disabled { get; set; }
    }
}