开发代码生成功能

This commit is contained in:
izory
2021-09-07 18:37:21 +08:00
parent 37155011f0
commit 18d8051d65
28 changed files with 786 additions and 1422 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
namespace {ModelsNamespace}
{
/// <summary>
/// {TableNameDesc},数据实体对象
/// </summary>
[SqlSugar.SugarTable("{TableName}")]
public class {ModelTypeName}
{
{ModelContent}
}
}