33 lines
1015 B
C#
33 lines
1015 B
C#
/////////////////////////////////////////////////////////////////////////////////
|
|
// 宁波拓通e智造平台 ToTong Next Builder //
|
|
// https://git.tuotong-tech.com/tnb/tnb.server //
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
using Tnb.Vengine.Domain;
|
|
|
|
namespace Tnb.Vengine.AppService;
|
|
|
|
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 CreatePageFromVmodelInput
|
|
{
|
|
public Guid? viewId { get; set; }
|
|
public string? vmid { get; set; }
|
|
}
|
|
|
|
public class VmodelGetInput : VmGetInput
|
|
{
|
|
public string? areaCode { get; set; }
|
|
public string? vmCode { get; set; }
|
|
public string? dbCode { get; set; }
|
|
public string? tableName { get; set; }
|
|
public bool drill { get; set; } = false;
|
|
} |