Files
HTCloud/HT.Cloud.Code/Form/FormValue.cs

24 lines
498 B
C#
Raw Permalink Normal View History

2023-03-03 16:07:50 +08:00
using System.Collections.Generic;
namespace HT.Cloud.Code
{
/// <summary>
/// 表单设计类
/// </summary>
public class FormValue
{
public string id { get; set; }
public string label { get; set; }
public int index { get; set; }
public string tag { get; set; }
public int span { get; set; }
public List<FormEx> columns { get; set; }
public string name { get; set; }
}
public class FormEx
{
public int span { get; set; }
public List<FormValue> list { get; set; }
}
}