Ai
40 Star 384 Fork 108

Mr'hu/Gardener

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
GenerateCodeInput.cs 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
Mr'hu 提交于 2024-05-30 18:12 +08:00 . feat:代码生成实现
// -----------------------------------------------------------------------------
// 园丁,是个很简单的管理系统
// gitee:https://gitee.com/hgflydream/Gardener
// issues:https://gitee.com/hgflydream/Gardener/issues
// -----------------------------------------------------------------------------
namespace Gardener.Core.CodeGeneration.Dtos
{
/// <summary>
/// 生成代码输入
/// </summary>
public class GenerateCodeInput
{
/// <summary>
/// 生成代码输入
/// </summary>
/// <param name="templateContent"></param>
/// <param name="entityTypeFullName"></param>
public GenerateCodeInput(string templateContent, string entityTypeFullName)
{
TemplateContent = templateContent;
EntityTypeFullName = entityTypeFullName;
}
/// <summary>
/// 模板
/// </summary>
public string TemplateContent { get; set; }
/// <summary>
/// 实体类名
/// </summary>
public string EntityTypeFullName { get; set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/hgflydream/Gardener.git
git@gitee.com:hgflydream/Gardener.git
hgflydream
Gardener
Gardener
v3

搜索帮助