Ai
4 Star 11 Fork 8

鸣飞/BuildH框架代码开发辅助工具

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MybatisCodeCreate.cs 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
鸣飞 提交于 2019-02-12 16:31 +08:00 . xxx
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CodeGenerator.Core
{
/// <summary>
/// 生成Mybatis基础设置
/// </summary>
public class MybatisCodeCreate
{
/// <summary>
/// 实体包名
/// </summary>
public string EntityPackage { get; set; }
/// <summary>
/// Dao包名
/// </summary>
public string DaoPackage { get; set; }
/// <summary>
/// mapping
/// </summary>
public string Mapping { get; set; }
/// <summary>
/// Iservice包名
/// </summary>
public string IServicePackage { get; set; }
/// <summary>
/// Service包名
/// </summary>
public string ServicePackage { get; set; }
/// <summary>
/// 被过滤掉前缀的表名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 表信息
/// </summary>
public TableInfo TableInfo { get; set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/mf_/CodeGenerator.git
git@gitee.com:mf_/CodeGenerator.git
mf_
CodeGenerator
BuildH框架代码开发辅助工具
master

搜索帮助