TienChin 活动管理-工程创建

简介: TienChin 活动管理-工程创建

工程模块的创建,与之前创建渠道管理一样的,所以这里就不贴图带着大家一起动手进行了,表结构我已经给到大家了,这里我只贴一下代码生成器的代码部分即可。

@Test
void generateActivity() {
    String path = "E:\\Desktop\\TienChin\\tienchin-service\\tienchin-activity\\src\\main";
    FastAutoGenerator.create(
                    "jdbc:mysql://localhost:3310/TienChin?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8",
                    "root",
                    "root"
            )
            .globalConfig(builder ->
                    builder
                            // 设置作者
                            .author("BNTang")
                            // 覆盖已生成文件
                            .fileOverride()
                            // 指定输出目录
                            .outputDir(path + "\\java"))
            .packageConfig(builder ->
                    builder
                            // 设置父包名
                            .parent("top.it6666")
                            // 设置父包模块名
                            .moduleName("activity")
                            // 设置mapperXml生成路径
                            .pathInfo(Collections.singletonMap(OutputFile.xml, path + "\\resources\\mapper")))
            .strategyConfig(builder ->
                    builder
                            // 设置需要生成的表名
                            .addInclude("tienchin_activity")
                            // 设置过滤表前缀
                            .addTablePrefix("tienchin_"))
            // 使用Freemarker引擎模板,默认的是Velocity引擎模板
            .templateEngine(new FreemarkerTemplateEngine())
            .execute();
}

最后将 Controller 放入到 Admin 模块当中。


目录
相关文章
TienChin 活动管理-准备工作
TienChin 活动管理-准备工作
60 0
TienChin 活动管理-修改活动
TienChin 活动管理-修改活动
56 0
TienChin 活动管理-添加活动接口
TienChin 活动管理-添加活动接口
66 0
TienChin 活动管理-删除活动
TienChin 活动管理-删除活动
50 0
|
前端开发
TienChin 活动管理-活动列表展示
TienChin 活动管理-活动列表展示
41 0
|
关系型数据库 MySQL
TienChin 渠道管理-渠道导入
TienChin 渠道管理-渠道导入
71 0
TienChin 活动管理-设置活动的默认状态
TienChin 活动管理-设置活动的默认状态
53 0
|
7月前
|
SQL 前端开发 API
SSMP整合案例第一步 制作分析模块创建与开发业务实体类
SSMP整合案例第一步 制作分析模块创建与开发业务实体类
40 0
|
8月前
|
消息中间件 运维 供应链
springboot区域云HIS医院信息综合管理平台源码
云HIS系统分为两个大的系统,一个是基层卫生健康云综合管理系统,另一个是基层卫生健康云业务系统。基层卫生健康云综合管理系统由运营商、开发商和监管机构使用,用来进行运营管理、运维管理和综合监管。基层卫生健康云业务系统由基层医院使用,用来支撑医院各类业务运转。
70 2
|
自然语言处理 安全
Web3.0钱包系统开发(开发功能)/指南教程/步骤流程/方案设计/项目逻辑/规则玩法/案例源码
Wallet type selection: Determine the type of wallet, which can be a browser plugin wallet, mobile application wallet, or online web wallet. The choice of wallet type should be based on the target user group and usage environment.