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("input")]
[FrontTypeBindDatabase(DbProvider.SqlServer, typeof(string), "nvarchar(200)")]
public class Front_Input : Front_Base
{
}
public class Front_Input_Options
{
///
///
///
public string Type { get; set; }
///
/// 宽度
///
public string Width { get; set; }
///
/// 默认值
///
public string DefaultValue { get; set; }
///
/// 占位内容
///
public string Placeholder { get; set; }
///
/// 可清除
///
public bool Clearable { get; set; }
///
/// 隐藏
///
public bool Hidden { get; set; }
///
/// 禁用
///
public bool Disabled { get; set; }
///
/// 最大长度
///
public int? MaxLength { get; set; }
///
/// 前缀
///
public string AddonBefore { get; set; }
///
/// 后缀
///
public string AddonAfter { get; set; }
}
}