Files
Yi.Admin/Yi.Abp.Net8/tool/Yi.Abp.Tool.Domain.Shared/Dtos/TemplateGenCreateDto.cs

38 lines
910 B
C#
Raw Normal View History

2024-06-02 13:09:25 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Abp.Tool.Domain.Shared.Enums;
namespace Yi.Abp.Tool.Domain.Shared.Dtos
{
public class TemplateGenCreateDto
{
2024-11-07 17:35:22 +08:00
public void SetTemplateGiteeRef(string moduleType)
2024-06-02 13:09:25 +08:00
{
2024-11-07 17:35:22 +08:00
this.GiteeRef = moduleType.ToLower();
2024-06-02 13:09:25 +08:00
}
2024-11-07 17:35:22 +08:00
2024-06-02 13:09:25 +08:00
/// <summary>
/// 模块名称
/// </summary>
public string Name { get; set; }
2024-11-07 17:35:22 +08:00
/// <summary>
/// 模块所属gitee分支
/// </summary>
public string GiteeRef { get; set; }
2024-06-02 13:09:25 +08:00
/// <summary>
/// 数据库提供者
/// </summary>
public DbmsEnum Dbms { get; set; }
/// <summary>
/// 需要替换的字符串内容
/// </summary>
public Dictionary<string, string> ReplaceStrData { get; set; }
}
}