using Admin.NET.Core.Util.LowCode.Front.Model;
using Furion.Extras.Admin.NET.Util.LowCode.Front.Att;
using Furion.Extras.Admin.NET.Util.LowCode.Front.Interface;
namespace Furion.Extras.Admin.NET.Util.LowCode.Front
{
[FrontType("batch")]
public class Front_Batch : IFront
{
public string Key { get; set; }
public string Label { get; set; }
public string Type { get; set; }
///
/// 配置
///
public Front_Batch_Options Options { get; set; }
///
/// 数据字段
///
public string Model { get; set; }
///
/// 帮助信息
///
public string Help { get; set; }
public ViewDynamic Dynamic
{ get { return null; } }
}
public class Front_Batch_Options
{
public int ScrollY { get; set; }
///
/// 禁用
///
public bool Disabled { get; set; }
///
/// 隐藏
///
public bool Hidden { get; set; }
///
/// 显示Label
///
public bool ShowLabel { get; set; }
///
/// 隐藏序号
///
public bool HideSequence { get; set; }
///
/// 宽度
///
public string Width { get; set; }
}
}