中材国际开发初始化增加工程项目模块
This commit is contained in:
parent
dd782ce4d8
commit
d7472caefa
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* This is a kingdee cosmic template project that is automatically generated by the Kingdee cosmic development assistant plugin.
|
||||
* If there are any issues during the use process, you can provide feedback to the kingdee developer community website.
|
||||
* Website: https://developer.kingdee.com/developer?productLineId=29
|
||||
* Author: liebin.zheng
|
||||
* Generate Date: 2024-11-22 12:15:17
|
||||
*/
|
||||
|
||||
dependencies {
|
||||
api project(':zcgj-zcdev-base-common')
|
||||
api project(':zcgj-zcdev-base-helper')
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* This is a kingdee cosmic template project that is automatically generated by the Kingdee cosmic development assistant plugin.
|
||||
* If there are any issues during the use process, you can provide feedback to the kingdee developer community website.
|
||||
* Website: https://developer.kingdee.com/developer?productLineId=29
|
||||
* Author: liebin.zheng
|
||||
* Generate Date: 2024-11-22 12:15:17
|
||||
*/
|
||||
package zcgj.zcdev.zcdev.pr.common;
|
||||
|
||||
/**
|
||||
* zcdev云pr应用-通用常量类<br>
|
||||
* 代码中不能存在硬编码敏感信息,如账号、密码、http外链、ftp外链、邮箱等。<br>
|
||||
* 标识或缓存的常量,需以"KEY_"、"FID_"、"ENTRY_"或"SUBENTRY_"作为变量的前缀。<br>
|
||||
*
|
||||
* @author zcgj
|
||||
* @date 2024-11-22 12:15:17
|
||||
*/
|
||||
public class AppflgConstant {
|
||||
|
||||
public static final String KEY_APP_NAME = "zcdev-pr";
|
||||
|
||||
}
|
|
@ -1,18 +1,21 @@
|
|||
/*
|
||||
* This is a kingdee cosmic template project that is automatically generated by the Kingdee cosmic development assistant plugin.
|
||||
* If there are any issues during the use process, you can provide feedback to the kingdee developer community website.
|
||||
* Website: https://developer.kingdee.com/developer?productLineId=29
|
||||
* Author: liebin.zheng
|
||||
* Generate Date: 2024-11-22 11:26:47
|
||||
*/
|
||||
|
||||
dependencies {
|
||||
|
||||
// 公共基础包
|
||||
implementation project(':zcgj-zcdev-base-common')
|
||||
implementation project(':zcgj-zcdev-base-helper')
|
||||
|
||||
// 引入zcdev云 - fs应用模块
|
||||
implementation project(':zcgj-zcdev-zcdev-fs')
|
||||
|
||||
}
|
||||
/*
|
||||
* This is a kingdee cosmic template project that is automatically generated by the Kingdee cosmic development assistant plugin.
|
||||
* If there are any issues during the use process, you can provide feedback to the kingdee developer community website.
|
||||
* Website: https://developer.kingdee.com/developer?productLineId=29
|
||||
* Author: liebin.zheng
|
||||
* Generate Date: 2024-11-22 11:26:47
|
||||
*/
|
||||
|
||||
dependencies {
|
||||
|
||||
// 公共基础包
|
||||
implementation project(':zcgj-zcdev-base-common')
|
||||
implementation project(':zcgj-zcdev-base-helper')
|
||||
|
||||
// 引入zcdev云 - fs应用模块
|
||||
implementation project(':zcgj-zcdev-zcdev-fs')
|
||||
|
||||
// 引入zcdev云 pr应用模块
|
||||
implementation project(':zcgj-zcdev-zcdev-pr')
|
||||
|
||||
}
|
|
@ -13,6 +13,8 @@ include(
|
|||
':zcgj-zcdev-base-helper',
|
||||
|
||||
':zcgj-zcdev-zcdev-fs',
|
||||
|
||||
':zcgj-zcdev-zcdev-pr',
|
||||
)
|
||||
|
||||
// -------------- 引入苍穹调试工程模块 --------------
|
||||
|
@ -24,3 +26,6 @@ project(':zcgj-zcdev-base-helper').projectDir = new File('code/base/zcgj-zcdev-b
|
|||
|
||||
// -------------- 引入zcdev云-fs应用模块 --------------
|
||||
project(':zcgj-zcdev-zcdev-fs').projectDir = new File('code/zcdev/zcgj-zcdev-zcdev-fs')
|
||||
|
||||
// -------------- 引入zcdev云-pr应用模块 --------------
|
||||
project(':zcgj-zcdev-zcdev-pr').projectDir = new File('code/zcdev/zcgj-zcdev-zcdev-pr')
|
||||
|
|
Loading…
Reference in New Issue