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("slider")]
[FrontTypeBindDatabase(DbProvider.SqlServer, typeof(int))]
public class Front_Slider : Front_Base
{
}
public class Front_Slider_Options
{
///
/// 宽度
///
public string Width { get; set; }
///
/// 默认值
///
public int DefaultValue { get; set; }
///
/// 禁用
///
public bool Disabled { get; set; }
///
/// 隐藏
///
public bool Hidden { get; set; }
///
/// 最小值
///
public int Min { get; set; }
///
/// 最大值
///
public int Max { get; set; }
///
/// 步长
///
public int Step { get; set; }
///
/// 显示输入框
///
public bool ShowInput { get; set; }
}
}