29 lines
685 B
C#
29 lines
685 B
C#
using CloudBuilder.CodeGenerator.Config;
|
|
using CloudBuilder.CodeGenerator.Data;
|
|
using CloudBuilder.CodeGenerator.Entity;
|
|
using System;
|
|
using System.CodeDom.Compiler;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.NetworkInformation;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static System.Windows.Forms.LinkLabel;
|
|
|
|
namespace CloudBuilder.CodeGenerator.Data
|
|
{
|
|
public class ModelData
|
|
{
|
|
public SysTableSchemaViewEntity[] sysTableSchemas;
|
|
public NamespaceObject NamespaceObject;
|
|
public ClassInfo[] ClassInfos;
|
|
|
|
public ClassInfo ClassInfo;
|
|
|
|
public string KeyType;
|
|
|
|
public int KeyCount;
|
|
}
|
|
}
|
|
|