修复清理vengine

This commit is contained in:
2023-09-19 10:55:14 +08:00
parent b9e9636d72
commit 0bf34fa215
31 changed files with 289 additions and 252 deletions

View File

@@ -12,25 +12,25 @@ namespace Tnb.Vengine.Domain;
/// </summary>
public class VmBaseProp
{
/// <summary>
/// 属性代码
/// </summary>
public string code { get; set; } = string.Empty;
/// <summary>
/// 属性代码
/// </summary>
public string code { get; set; } = string.Empty;
/// <summary>
/// 显示名称
/// </summary>
public string name { get; set; } = string.Empty;
/// <summary>
/// 显示名称
/// </summary>
public string name { get; set; } = string.Empty;
}
public class DictOption
{
public string dictTypeId { get; set; } = string.Empty;
public string refField { get; set; } = "id";
public string dictTypeId { get; set; } = string.Empty;
public string refField { get; set; } = "id";
}
public class CompOption
{
public string type { get; set; } = "el-input";
public JObject attr { get; set; } = new JObject();
public string type { get; set; } = "el-input";
public JObject attr { get; set; } = new JObject();
}