Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
f8ac6c7d
提交
f8ac6c7d
编写于
8月 17, 2022
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
重新实现deployId
上级
c1743083
变更
17
隐藏空白字符变更
内嵌
并排
正在显示
17 个修改的文件
包含
91 行增加
和
54 行删除
+91
-54
pom.xml
modules/ibizlab-generator-core/pom.xml
+1
-1
CtrlModel.java
...ore/src/main/java/cn/ibizlab/codegen/model/CtrlModel.java
+10
-0
SystemModel.java
...e/src/main/java/cn/ibizlab/codegen/model/SystemModel.java
+30
-3
{{dicts}}Dict.java.hbs
.../{{packageName}}/api/{{apps}}/dict/{{dicts}}Dict.java.hbs
+1
-1
{{pascalCase ctrls@FORM}}AddDto.java.hbs
...se appEntities}}/{{pascalCase ctrls@FORM}}AddDto.java.hbs
+1
-1
{{pascalCase ctrls@FORM}}BaseDto.java.hbs
...e appEntities}}/{{pascalCase ctrls@FORM}}BaseDto.java.hbs
+4
-1
{{pascalCase ctrls@FORM}}Dto.java.hbs
...lCase appEntities}}/{{pascalCase ctrls@FORM}}Dto.java.hbs
+1
-1
{{pascalCase ctrls@FORM}}UpdateDto.java.hbs
...appEntities}}/{{pascalCase ctrls@FORM}}UpdateDto.java.hbs
+1
-1
pom.xml.hbs
...ab-template-ibizboot/src/main/resources/templ/pom.xml.hbs
+1
-1
pom.xml.hbs
...src/main/resources/templ/{{projectName}}-core/pom.xml.hbs
+1
-1
SystemRuntimeBase.java.hbs
...n/java/{{packageName}}/runtime/SystemRuntimeBase.java.hbs
+1
-1
logback-spring.xml.hbs
...jectName}}-core/src/main/resources/logback-spring.xml.hbs
+0
-0
pom.xml.hbs
...main/resources/templ/{{projectName}}-provider/pom.xml.hbs
+27
-36
application-boot.yml.hbs
...me}}-provider/src/main/resources/application-boot.yml.hbs
+4
-4
pom.xml.hbs
...ab-template-ibizedge/src/main/resources/templ/pom.xml.hbs
+1
-1
pom.xml.hbs
...src/main/resources/templ/{{projectName}}-core/pom.xml.hbs
+1
-1
banner.txt
.../templ/{{projectName}}-core/src/main/resources/banner.txt
+6
-0
未找到文件。
modules/ibizlab-generator-core/pom.xml
浏览文件 @
f8ac6c7d
...
...
@@ -156,7 +156,7 @@
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-model
</artifactId>
<version>
8.1.0.1
32
</version>
<version>
8.1.0.1
81
</version>
<exclusions>
<exclusion>
<artifactId>
slf4j-simple
</artifactId>
...
...
modules/ibizlab-generator-core/src/main/java/cn/ibizlab/codegen/model/CtrlModel.java
浏览文件 @
f8ac6c7d
package
cn
.
ibizlab
.
codegen
.
model
;
import
cn.ibizlab.codegen.utils.StringAdvUtils
;
import
com.alibaba.fastjson.JSONArray
;
import
com.alibaba.fastjson.JSONObject
;
import
lombok.Getter
;
...
...
@@ -303,6 +304,15 @@ public class CtrlModel extends BaseModel{
return
false
;
}
public
String
getApiModelName
()
{
if
(
appEntity
!=
null
&&
appEntity
.
getEntity
()!=
null
)
{
return
StringAdvUtils
.
pascalcase
(
appEntity
.
getEntity
().
getCodeName
())+
StringAdvUtils
.
pascalcase
(
getCodeName
());
}
return
StringAdvUtils
.
pascalcase
(
getCodeName
());
}
private
List
<
VoFieldModel
>
voItems
;
public
List
<
VoFieldModel
>
getVoItems
()
...
...
modules/ibizlab-generator-core/src/main/java/cn/ibizlab/codegen/model/SystemModel.java
浏览文件 @
f8ac6c7d
...
...
@@ -49,14 +49,22 @@ public class SystemModel extends BaseModel {
this
.
setName
(
system
.
getName
());
this
.
setProjectName
(
this
.
pub
.
getCodeName
().
toLowerCase
());
this
.
setProjectDesc
(
StringAdvUtils
.
pascalcase
(
this
.
pub
.
getCodeName
().
toLowerCase
()));
this
.
setMemo
(
StringUtils
.
isEmpty
(
pub
.
getMemo
())?
pub
.
getName
():
pub
.
getMemo
());
this
.
setPackageName
(
this
.
pub
.
getPKGCodeName
());
this
.
setModelFolder
((
StringUtils
.
isEmpty
(
this
.
pub
.
getModelFolder
())?
"model"
:
this
.
pub
.
getModelFolder
()));
}
else
{
this
.
setCodeName
(
system
.
getCodeName
());
this
.
setName
(
system
.
getName
());
this
.
setProjectName
(
system
.
getCodeName
().
toLowerCase
());
this
.
setProjectDesc
(
system
.
getName
());
this
.
setMemo
(
StringUtils
.
isEmpty
(
system
.
getLogicName
())?
system
.
getName
():
system
.
getLogicName
());
this
.
setPackageName
(
system
.
getCodeName
().
toLowerCase
());
this
.
setModelFolder
(
"model"
);
}
if
(
StringUtils
.
isEmpty
(
system
.
getDeploySysId
())||
system
.
getDeploySysId
().
length
()>
16
)
this
.
setDeploySysId
(
this
.
getName
());
else
this
.
setDeploySysId
(
system
.
getDeploySysId
());
getEntitiesMap
();
getSubServiceApiMap
();
}
...
...
@@ -73,6 +81,12 @@ public class SystemModel extends BaseModel {
private
String
modelFolderPath
;
private
String
memo
;
private
String
deploySysId
;
private
String
modelFolder
;
private
boolean
enableDS
=
false
;
private
boolean
enableES
=
false
;
private
boolean
enableMongo
=
false
;
...
...
@@ -183,13 +197,22 @@ public class SystemModel extends BaseModel {
private
Map
<
String
,
AppModel
>
appsMap
;
private
AppModel
defaultApp
;
private
ApiModel
defaultApi
;
public
synchronized
Map
<
String
,
AppModel
>
getAppsMap
()
{
if
(
appsMap
==
null
)
{
appsMap
=
new
LinkedHashMap
<>();
if
(
getSystem
().
getAllPSApps
()
!=
null
)
{
getSystem
().
getAllPSApps
().
forEach
(
item
->
{
appsMap
.
put
(
item
.
getCodeName
(),
new
AppModel
(
item
).
setSystem
(
this
));
AppModel
appModel
=
new
AppModel
(
item
).
setSystem
(
this
);
if
(
item
.
getDefaultFlag
())
defaultApp
=
appModel
;
appsMap
.
put
(
item
.
getCodeName
(),
appModel
);
});
if
(
defaultApp
==
null
)
defaultApp
=
appsMap
.
values
().
iterator
().
next
();
}
}
return
appsMap
;
...
...
@@ -206,8 +229,12 @@ public class SystemModel extends BaseModel {
try
{
apisMap
=
new
LinkedHashMap
<>();
getSystem
().
getAllPSSysServiceAPIs
().
forEach
(
api
->
{
apisMap
.
put
(
api
.
getCodeName
(),
new
ApiModel
(
api
).
setSystem
(
this
));
ApiModel
apiModel
=
new
ApiModel
(
api
).
setSystem
(
this
);
defaultApi
=
apiModel
;
apisMap
.
put
(
api
.
getCodeName
(),
apiModel
);
});
if
(
defaultApi
==
null
)
defaultApi
=
apisMap
.
values
().
iterator
().
next
();
}
catch
(
Exception
e
)
{
}
...
...
@@ -221,7 +248,7 @@ public class SystemModel extends BaseModel {
if
(
apiProfileId
==
null
)
{
if
(!
ObjectUtils
.
isEmpty
(
getApisMap
())){
apiProfileId
=
apisMap
.
values
().
iterator
().
next
().
getCodeName
();
apiProfileId
=
getDefaultApi
().
getCodeName
();
}
}
return
apiProfileId
;
...
...
modules/ibizlab-template/ibizlab-template-apivo/src/main/resources/templ/{{projectName}}-api/src/main/java/{{packageName}}/api/{{apps}}/dict/{{dicts}}Dict.java.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -11,7 +11,7 @@ import cn.ibizlab.util.annotation.SwaggerDisplayEnum;
/**
* 字典:
{{
dict
.
name
}}
*/
@SwaggerDisplayEnum
@SwaggerDisplayEnum
{{#
eq
dict
.
valueType
"Integer"
}}
(type = Integer.class)
{{/
eq
}}
@ApiModel(value = "字典:
{{
dict
.
name
}}
", description = "
{{
dict
.
codeName
}}
")
public enum
{{
pascalCase
dict
.
codeName
}}
Dict {
...
...
modules/ibizlab-template/ibizlab-template-apivo/src/main/resources/templ/{{projectName}}-api/src/main/java/{{packageName}}/api/{{apps}}/dto/{{pascalCase appEntities}}/{{pascalCase ctrls@FORM}}AddDto.java.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -29,7 +29,7 @@ import {{packageName}}.api.{{apps}}.dict.*;
*
{{
ctrl
.
appEntity
.
entity
.
logicName
}}
AddDTO对象[
{{
ctrl
.
codeName
}}
]
{{
replace
ctrl
.
logicName
"表单"
""
}}
*/
@Data
@ApiModel(value = "
{{
ctrl
.
ap
pEntity
.
entity
.
logicName
}}
AddDTO对象-
{{
pascalCase
ctrl
.
codeName
}}
AddDto]-
{{
replace
ctrl
.
logicName
"表单"
""
}}
", description = "
{{
ctrl
.
appEntity
.
entity
.
codeName
}}
-
{{
ctrl
.
codeName
}}
-Add
")
@ApiModel(value = "
{{
ctrl
.
ap
iModelName
}}
AddDto", description = "
{{
ctrl
.
appEntity
.
entity
.
logicName
}}
-
{{
pascalCase
ctrl
.
codeName
}}
AddDto-
{{
replace
ctrl
.
logicName
"表单"
""
}}
")
public class
{{
pascalCase
ctrl
.
codeName
}}
AddDto extends
{{
pascalCase
ctrl
.
codeName
}}
BaseDto {
private static final long serialVersionUID = 1L;
...
...
modules/ibizlab-template/ibizlab-template-apivo/src/main/resources/templ/{{projectName}}-api/src/main/java/{{packageName}}/api/{{apps}}/dto/{{pascalCase appEntities}}/{{pascalCase ctrls@FORM}}BaseDto.java.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -29,7 +29,7 @@ import {{packageName}}.api.{{apps}}.dict.*;
*
{{
ctrl
.
appEntity
.
entity
.
logicName
}}
BaseDTO对象[
{{
ctrl
.
codeName
}}
]
{{
replace
ctrl
.
logicName
"表单"
""
}}
*/
@Data
@ApiModel(value = "
{{
ctrl
.
ap
pEntity
.
entity
.
logicName
}}
BaseDTO对象-
{{
pascalCase
ctrl
.
codeName
}}
BaseDto-
{{
replace
ctrl
.
logicName
"表单"
""
}}
", description = "
{{
ctrl
.
appEntity
.
entity
.
codeName
}}
-
{{
ctrl
.
codeName
}}
-Base
")
@ApiModel(value = "
{{
ctrl
.
ap
iModelName
}}
BaseDto", description = "
{{
ctrl
.
appEntity
.
entity
.
logicName
}}
-
{{
pascalCase
ctrl
.
codeName
}}
BaseDto-
{{
replace
ctrl
.
logicName
"表单"
""
}}
")
public class
{{
pascalCase
ctrl
.
codeName
}}
BaseDto implements Serializable {
private static final long serialVersionUID = 1L;
...
...
@@ -44,6 +44,9 @@ public class {{pascalCase ctrl.codeName}}BaseDto implements Serializable {
@JsonFormat(pattern = "
{{
format
}}
", locale = "zh", timezone = "GMT+8")
@DateTimeFormat(pattern = "
{{
format
}}
")
{{/
timeType
}}
{{#if
dict
}}
@JsonFormat(shape = JsonFormat.Shape.
{{#if
singleSelect
}}{{#
eq
type
.
java
"String"
}}
STRING
{{/
eq
}}{{#
eq
type
.
java
"Integer"
}}
NUMBER
{{/
eq
}}{{else}}
STRING
{{/if}}
)
{{/if}}
@JSONField(name = "
{{
jsonName
}}
"
{{#
timeType
}}
, format = "
{{
format
}}
"
{{/
timeType
}}
)
{{#
eq
javaType
"Long"
}}
@JsonSerialize(using = ToStringSerializer.class)
...
...
modules/ibizlab-template/ibizlab-template-apivo/src/main/resources/templ/{{projectName}}-api/src/main/java/{{packageName}}/api/{{apps}}/dto/{{pascalCase appEntities}}/{{pascalCase ctrls@FORM}}Dto.java.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -29,7 +29,7 @@ import {{packageName}}.api.{{apps}}.dict.*;
*
{{
ctrl
.
appEntity
.
entity
.
logicName
}}
DTO对象[
{{
ctrl
.
codeName
}}
]
{{
replace
ctrl
.
logicName
"表单"
""
}}
*/
@Data
@ApiModel(value = "
{{
ctrl
.
ap
pEntity
.
entity
.
logicName
}}
DTO对象-
{{
pascalCase
ctrl
.
codeName
}}
Dto-
{{
replace
ctrl
.
logicName
"表单"
""
}}
", description = "
{{
ctrl
.
appEntity
.
entity
.
codeName
}}
-
{{
ctrl
.
codeName
}}
")
@ApiModel(value = "
{{
ctrl
.
ap
iModelName
}}
Dto", description = "
{{
ctrl
.
appEntity
.
entity
.
logicName
}}
-
{{
pascalCase
ctrl
.
codeName
}}
Dto-
{{
replace
ctrl
.
logicName
"表单"
""
}}
")
public class
{{
pascalCase
ctrl
.
codeName
}}
Dto extends
{{
pascalCase
ctrl
.
codeName
}}
BaseDto {
private static final long serialVersionUID = 1L;
...
...
modules/ibizlab-template/ibizlab-template-apivo/src/main/resources/templ/{{projectName}}-api/src/main/java/{{packageName}}/api/{{apps}}/dto/{{pascalCase appEntities}}/{{pascalCase ctrls@FORM}}UpdateDto.java.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -29,7 +29,7 @@ import {{packageName}}.api.{{apps}}.dict.*;
*
{{
ctrl
.
appEntity
.
entity
.
logicName
}}
UpdateDTO对象[
{{
ctrl
.
codeName
}}
]
{{
replace
ctrl
.
logicName
"表单"
""
}}
*/
@Data
@ApiModel(value = "
{{
ctrl
.
ap
pEntity
.
entity
.
logicName
}}
-
{{
pascalCase
ctrl
.
codeName
}}
UpdateDto-
{{
replace
ctrl
.
logicName
"表单"
""
}}
", description = "
{{
ctrl
.
appEntity
.
entity
.
codeName
}}
-
{{
ctrl
.
codeName
}}
-Update
")
@ApiModel(value = "
{{
ctrl
.
ap
iModelName
}}
UpdateDto", description = "
{{
ctrl
.
appEntity
.
entity
.
logicName
}}
-
{{
pascalCase
ctrl
.
codeName
}}
UpdateDto-
{{
replace
ctrl
.
logicName
"表单"
""
}}
")
public class
{{
pascalCase
ctrl
.
codeName
}}
UpdateDto extends
{{
pascalCase
ctrl
.
codeName
}}
BaseDto {
private static final long serialVersionUID = 1L;
...
...
modules/ibizlab-template/ibizlab-template-ibizboot/src/main/resources/templ/pom.xml.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -7,7 +7,7 @@
<groupId>
{{
packageName
}}
</groupId>
<version>
{{
system
.
pub
.
versionString
}}
</version>
<name>
{{
projectDesc
}}
</name>
<description>
{{
#if
system
.
pub
.
memo
}}{{
system
.
pub
.
memo
}}{{else}}{{
system
.
pub
.
name
}}{{/if
}}
</description>
<description>
{{
system
.
memo
}}
</description>
<packaging>
pom
</packaging>
<parent>
...
...
modules/ibizlab-template/ibizlab-template-ibizboot/src/main/resources/templ/{{projectName}}-core/pom.xml.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -11,7 +11,7 @@
<artifactId>
{{
projectName
}}
-core
</artifactId>
<name>
{{
projectDesc
}}
Code
</name>
<description>
{{
projectDesc
}}
Core,模板生成代码,再次发布会覆盖,建议不要直接修改,修改请在
{{
projectName
}}
-provider项目中
重写
</description>
<description>
{{
system
.
memo
}}
Core,模板生成代码,再次发布会覆盖,建议不要直接修改,修改请在
{{
projectName
}}
-provider项目中继承或覆盖
重写
</description>
<dependencies>
<dependency>
...
...
modules/ibizlab-template/ibizlab-template-ibizboot/src/main/resources/templ/{{projectName}}-core/src/main/java/{{packageName}}/runtime/SystemRuntimeBase.java.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -14,7 +14,7 @@ public class SystemRuntimeBase extends BootSystemRuntime implements ISystemRunti
@Override
public String getName() {
return "
{{
system
.
pub
.
name
}}
";
return "
{{
system
.
deploySysId
}}
";
}
@Override
...
...
modules/ibizlab-template/ibizlab-template-ibizboot/src/main/resources/templ/{{projectName}}-
provider
/src/main/resources/logback-spring.xml.hbs
→
modules/ibizlab-template/ibizlab-template-ibizboot/src/main/resources/templ/{{projectName}}-
core
/src/main/resources/logback-spring.xml.hbs
浏览文件 @
f8ac6c7d
文件已移动
modules/ibizlab-template/ibizlab-template-ibizboot/src/main/resources/templ/{{projectName}}-provider/pom.xml.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -12,6 +12,7 @@
<groupId>
{{
packageName
}}
</groupId>
<artifactId>
{{
projectName
}}
-provider
</artifactId>
<version>
{{
system
.
pub
.
versionString
}}
</version>
<description>
{{
system
.
memo
}}
Provider
</description>
<dependencies>
<dependency>
...
...
@@ -26,40 +27,6 @@
</properties>
<profiles>
<profile>
<id>
boot
</id>
<build>
<resources>
<resource>
<directory>
${basedir}/src/main/resources
</directory>
<includes>
<include>
**/**
</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<finalName>
{{
projectName
}}
</finalName>
<jvmArguments>
-Dfile.encoding=UTF-8
</jvmArguments>
<mainClass>
{{
packageName
}}
.IBizRuntimeApplication
</mainClass>
<outputDirectory>
../
</outputDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
{{
lowerCase
system
.
apiProfileId
}}
</id>
<build>
...
...
@@ -73,7 +40,6 @@
</resources>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
...
...
@@ -177,7 +143,32 @@
</profile>
</profiles>
<build>
<resources>
<resource>
<directory>
${basedir}/src/main/resources
</directory>
<includes>
<include>
**/**
</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<finalName>
{{
projectName
}}
-provider
</finalName>
<jvmArguments>
-Dfile.encoding=UTF-8
</jvmArguments>
<mainClass>
{{
packageName
}}
.IBizRuntimeApplication
</mainClass>
<outputDirectory>
../
</outputDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
cn.ibizlab
</groupId>
<artifactId>
ibizlab-generator-plugin
</artifactId>
...
...
@@ -187,7 +178,7 @@
../
</output>
<inputSpec>
../
{{
projectName
}}
-core/src/main/resources/model/
{{
replace
packageName
"."
"/"
}}
../
{{
system
.
modelFolder
}}
</inputSpec>
<templateDirs>
${basedir}/src/main/resources/templ
...
...
modules/ibizlab-template/ibizlab-template-ibizboot/src/main/resources/templ/{{projectName}}-provider/src/main/resources/application-boot.yml.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -36,12 +36,12 @@ ibiz:
serviceurl: ${zookeeper.address:127.0.0.1:2181}
cache:
serviceurl: ${spring.redis.host:127.0.0.1}:${spring.redis.port:6379}
{{
lowerCase
system
.
pub
.
name
}}
:
{{
lowerCase
system
.
deploySysId
}}
:
runtimeClassName:
{{
packageName
}}
.runtime.SystemRuntime
settings:
sysdbscheme:
default:
datasource:
{{
lowerCase
system
.
pub
.
name
}}
__default
datasource:
{{
lowerCase
system
.
deploySysId
}}
__default
dbtype: ${spring.datasource.dbtype:MYSQL}
{{#if
system
.
subServiceApiModules
}}
subsysserviceapi:
...
...
@@ -54,7 +54,7 @@ ibiz:
{{/
each
}}
{{/if}}
servicehub:
id:
{{
lowerCase
system
.
pub
.
name
}}
id:
{{
lowerCase
system
.
deploySysId
}}
register-naming-service: true
publish-config: true
enableAppGateway: true
...
...
@@ -64,7 +64,7 @@ ibiz:
fileFolder: ${ibiz.filePath:/app/file/}
loadDeploySystems:
- gateway
-
{{
lowerCase
system
.
pub
.
name
}}
-
{{
lowerCase
system
.
deploySysId
}}
systemSettings:
cloudclientutil:
serviceurl: lb://ebsx-oldapi
...
...
modules/ibizlab-template/ibizlab-template-ibizedge/src/main/resources/templ/pom.xml.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -7,7 +7,7 @@
<groupId>
{{
packageName
}}
</groupId>
<version>
{{
system
.
pub
.
versionString
}}
</version>
<name>
{{
projectDesc
}}
</name>
<description></description>
<description>
{{
system
.
memo
}}
</description>
<packaging>
pom
</packaging>
<parent>
...
...
modules/ibizlab-template/ibizlab-template-ibizedge/src/main/resources/templ/{{projectName}}-core/pom.xml.hbs
浏览文件 @
f8ac6c7d
...
...
@@ -11,7 +11,7 @@
<artifactId>
{{
projectName
}}
-core
</artifactId>
<name>
{{
projectDesc
}}
Core
</name>
<description>
{{
projectDesc
}}
Core
</description>
<description>
{{
system
.
memo
}}
Core,模板生成代码,再次发布会覆盖,建议不要直接修改,修改请在
{{
projectName
}}
-boot项目中继承或覆盖重写
</description>
<dependencies>
...
...
modules/ibizlab-template/ibizlab-template-ibizedge/src/main/resources/templ/{{projectName}}-core/src/main/resources/banner.txt
0 → 100644
浏览文件 @
f8ac6c7d
.__ ___. .__ .____ ___.
|__|\_ |__ |__|________| | _____ \_ |__
| | | __ \ | |\___ /| | \__ \ | __ \
| | | \_\ \| | / / | |___ / __ \_| \_\ \
|__| |___ /|__|/_____ \|_______ \(____ /|___ /
\/ \/ \/ \/ \/
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录