开发代码生成功能

This commit is contained in:
izory
2021-09-06 18:35:36 +08:00
parent 23187ed8c5
commit c1e014a5d0
14 changed files with 738 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ZR.Model.CodeGenerator
{
public class DataBaseInfo
{
/// <summary>
/// 数据库名称
/// </summary>
public string DbName { get; set; }
}
}