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("date")]
[FrontTypeBindDatabase(DbProvider.SqlServer, typeof(DateTimeOffset))]
public class Front_Date : Front_Base
{
}
public class Front_Date_Options
{
///
/// 宽度
///
public string Width { get; set; }
///
/// 默认值
///
public DateTime? DefaultValue { get; set; }
///
/// 默认值
///
public DateTime[] RangeDefaultValue { get; set; }
///
/// 范围选择
///
public bool Range { get; set; }
///
/// 时间选择器
///
public bool ShowTime { get; set; }
///
/// 可清除
///
public bool Clearable { get; set; }
///
/// 隐藏
///
public bool Hidden { get; set; }
///
/// 禁用
///
public bool Disabled { get; set; }
///
/// 占位内容
///
public string Placeholder { get; set; }
///
/// 占位内容
///
public string[] RangePlaceholder { get; set; }
///
/// 时间格式
///
public string Format { get; set; }
}
}