59 lines
1.5 KiB
C#
59 lines
1.5 KiB
C#
/////////////////////////////////////////////////////////////////////////////////
|
|
// 宁波拓通e智造平台 ToTong Next Builder //
|
|
// https://git.tuotong-tech.com/tnb/tnb.server //
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
using Tnb.Vengine.Domain;
|
|
|
|
namespace Tnb.Vengine.AppService;
|
|
|
|
public class VmodelGetInput : VmGetInput
|
|
{
|
|
/// <summary>
|
|
/// 模块code, areaCode和vmCode为一组
|
|
/// </summary>
|
|
public string? areaCode { get; set; }
|
|
/// <summary>
|
|
/// 模型code, areaCode和vmCode为一组
|
|
/// </summary>
|
|
public string? vmCode { get; set; }
|
|
/// <summary>
|
|
/// 是否钻取子模型
|
|
/// </summary>
|
|
public bool drill { get; set; } = false;
|
|
}
|
|
public class VmodelCreateInput : VmEditInput
|
|
{
|
|
public new Vmodel? data { get; set; }
|
|
}
|
|
public class VmodelUpdateInput : VmEditInput
|
|
{
|
|
public new Vmodel? data { get; set; }
|
|
}
|
|
public class VmodelCreateFromTableInput
|
|
{
|
|
public string? dbCode { get; set; }
|
|
|
|
public string tableName { get; set; } = string.Empty;
|
|
|
|
public string? removePrefix { get; set; }
|
|
public string areaCode { get; set; } = "edp";
|
|
}
|
|
|
|
public class VmodelPageCreateInput : VmEditInput
|
|
{
|
|
public new VmodelPage? data { get; set; }
|
|
}
|
|
|
|
public class VmodelPageUpdateInput : VmEditInput
|
|
{
|
|
public new VmodelPage? data { get; set; }
|
|
}
|
|
|
|
public class VmodelPageCreateFromVmodelInput
|
|
{
|
|
public Guid? viewId { get; set; }
|
|
public string? vmid { get; set; }
|
|
}
|
|
|