Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
db13503d
提交
db13503d
编写于
12月 21, 2021
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
判断表达式 handlebars 写法
上级
4f819f5b
变更
13
隐藏空白字符变更
内嵌
并排
正在显示
13 个修改的文件
包含
16 行增加
和
11 行删除
+16
-11
CliOption.java
...ore/src/main/java/cn/ibizlab/codegen/model/CliOption.java
+5
-1
TemplateDefinition.java
...ava/cn/ibizlab/codegen/templating/TemplateDefinition.java
+1
-1
README.md
...generator-core/src/main/resources/templ/r7/.def/README.md
+0
-2
pub.txt
...b-generator-core/src/main/resources/templ/r7/.def/pub.txt
+0
-1
.ibizlab-generator-ignore
...ore/src/main/resources/templ/r7/.ibizlab-generator-ignore
+1
-1
README.md
...nerator-core/src/main/resources/templ/r7/@macro/README.md
+2
-0
pub.txt
...generator-core/src/main/resources/templ/r7/@macro/pub.txt
+3
-0
{{pages@DEEDITVIEW}}.vue
...rc/page/{{appModules}}/{{pages}}/{{pages@DEEDITVIEW}}.vue
+1
-1
{{pages@DEGRIDVIEW}}.vue
...rc/page/{{appModules}}/{{pages}}/{{pages@DEGRIDVIEW}}.vue
+1
-1
{{appEntities}}-service.ts
...}}/src/service/{{appEntities}}/{{appEntities}}-service.ts
+1
-1
pom.xml
...bizlab-generator-core/src/main/resources/templ/r7/pom.xml
+1
-2
{{entities@SQL}}.java.hbs
...ackageName}}/{{modules}}/domain/{{entities@SQL}}.java.hbs
+0
-0
I{{entities@SQL}}Service.java
...eName}}/{{modules}}/service/I{{entities@SQL}}Service.java
+0
-0
未找到文件。
modules/ibizlab-generator-core/src/main/java/cn/ibizlab/codegen/model/CliOption.java
浏览文件 @
db13503d
...
...
@@ -46,7 +46,7 @@ public class CliOption extends DataObj
this
.
set
(
templateFileType
.
name
(),
baseData
);
this
.
set
(
templateFileType
.
value
(),
path
);
if
(!
StringUtils
.
isEmpty
(
this
.
cliSubType
))
this
.
set
(
templateFileType
.
value
()+
"
__
"
+
this
.
cliSubType
,
path
);
this
.
set
(
templateFileType
.
value
()+
"
@
"
+
this
.
cliSubType
,
path
);
return
this
;
}
...
...
@@ -104,4 +104,8 @@ public class CliOption extends DataObj
}
@Override
public
int
size
()
{
return
super
.
size
();
}
}
modules/ibizlab-generator-core/src/main/java/cn/ibizlab/codegen/templating/TemplateDefinition.java
浏览文件 @
db13503d
...
...
@@ -55,7 +55,7 @@ public class TemplateDefinition {
Pattern
p
=
Pattern
.
compile
(
"\\{\\{([^}]*)\\}\\}"
);
Matcher
m
=
p
.
matcher
(
fileName
);
while
(
m
.
find
())
{
String
[]
pairs
=
m
.
group
(
1
).
split
(
"
__
"
);
String
[]
pairs
=
m
.
group
(
1
).
split
(
"
@
"
);
if
(
type
.
name
().
equalsIgnoreCase
(
pairs
[
0
])
||
type
.
value
().
equalsIgnoreCase
(
pairs
[
0
]))
{
if
(
pairs
.
length
>
1
&&(!
StringUtils
.
isEmpty
(
pairs
[
1
])))
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/.def/README.md
已删除
100644 → 0
浏览文件 @
4f819f5b
预定义代码片段模板目录
其余模板文件引用时可以使用 {{>././.def/pub.txt}} 方式引用,支持相对路径
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/.def/pub.txt
已删除
100644 → 0
浏览文件 @
4f819f5b
{{projectName}}
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/.ibizlab-generator-ignore
浏览文件 @
db13503d
**.ibizlab-generator-ignore
**.DS_Store
**.def/**
\ No newline at end of file
**@macro/**
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/README.md
0 → 100644
浏览文件 @
db13503d
预定义代码片段模板目录
其余模板文件引用时可以使用 {{> @macro/pub.txt}} 方式引用,支持相对路径
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/pub.txt
0 → 100644
浏览文件 @
db13503d
子模板 {{projectName}}
123
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/page/{{appModules}}/{{pages}}/{{pages
__
DEEDITVIEW}}.vue
→
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/page/{{appModules}}/{{pages}}/{{pages
@
DEEDITVIEW}}.vue
浏览文件 @
db13503d
edit
edit
@
{{page.codeName}}--{{page.appModule}}
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/page/{{appModules}}/{{pages}}/{{pages
__
DEGRIDVIEW}}.vue
→
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/page/{{appModules}}/{{pages}}/{{pages
@
DEGRIDVIEW}}.vue
浏览文件 @
db13503d
grid
grid
@
{{page.codeName}}--{{page.appModule}}
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/service/{{appEntities}}/{{appEntities}}-service.ts
浏览文件 @
db13503d
...
...
@@ -20,7 +20,7 @@
{{
/eq}
}
目前支持的判断有
eq
等于
,
neq
不等于
,
gt
大于
,
gte
大于等于
,
lt
小于
,
lte
小于等于
{{
#
appEntity
.
ctrls
}}
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/pom.xml
浏览文件 @
db13503d
...
...
@@ -15,8 +15,7 @@
<artifactId>
{{projectName}}-dependencies
</artifactId>
<version>
1.0.0.0
</version>
<relativePath>
{{projectName}}-dependencies/pom.xml
</relativePath>
</parent>
</parent>
<modules>
<!-- dependencies -->
<module>
{{projectName}}-dependencies
</module>
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/{{projectName}}-core/src/main/java/{{packageName}}/{{modules}}/domain/{{entities
__
SQL}}.java.hbs
→
modules/ibizlab-generator-core/src/main/resources/templ/r7/{{projectName}}-core/src/main/java/{{packageName}}/{{modules}}/domain/{{entities
@
SQL}}.java.hbs
浏览文件 @
db13503d
文件已移动
modules/ibizlab-generator-core/src/main/resources/templ/r7/{{projectName}}-core/src/main/java/{{packageName}}/{{modules}}/service/I{{entities
__
SQL}}Service.java
→
modules/ibizlab-generator-core/src/main/resources/templ/r7/{{projectName}}-core/src/main/java/{{packageName}}/{{modules}}/service/I{{entities
@
SQL}}Service.java
浏览文件 @
db13503d
文件已移动
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录