using iWare.Wms.Core.Util.LowCode.Front.Model;
using Furion.Extras.iWare.Wms.Util.LowCode.Front.Att;
using Furion.Extras.iWare.Wms.Util.LowCode.Front.Interface;
namespace Furion.Extras.iWare.Wms.Util.LowCode.Front
{
[FrontType("button")]
public class Front_Button : IFront
{
public string Key { get; set; }
public string Label { get; set; }
public string Type { get; set; }
public string Model { get; set; }
public Front_Button_Options Options { get; set; }
public ViewDynamic Dynamic
{ get { return null; } }
}
public class Front_Button_Options
{
///
/// 类型
///
public string Type { get; set; }
///
/// 按钮操作
///
public string Handle { get; set; }
///
/// 动态函数
///
public string DynamicFun { get; set; }
///
/// 隐藏
///
public bool Hidden { get; set; }
///
/// 禁用
///
public bool Disabled { get; set; }
}
}