添加项目文件。
This commit is contained in:
24
WaterCloud.Code/Form/FormValue.cs
Normal file
24
WaterCloud.Code/Form/FormValue.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WaterCloud.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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user