项目结构
This commit is contained in:
parent
f620aba27f
commit
d75a97e0c0
|
@ -3,9 +3,9 @@
|
||||||
* If there are any issues during the use process, you can provide feedback to the kingdee developer community website.
|
* 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
|
* Website: https://developer.kingdee.com/developer?productLineId=29
|
||||||
* Author: liebin.zheng
|
* Author: liebin.zheng
|
||||||
* Generate Date: 2024-10-25 13:35:51
|
* Generate Date: 2024-10-25 14:27:06
|
||||||
*/
|
*/
|
||||||
package sys.common;
|
package shkd.shkd1.sys.sys.common;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sys云sys应用-通用常量类<br>
|
* sys云sys应用-通用常量类<br>
|
||||||
|
@ -13,7 +13,7 @@ package sys.common;
|
||||||
* 标识或缓存的常量,需以"KEY_"、"FID_"、"ENTRY_"或"SUBENTRY_"作为变量的前缀。<br>
|
* 标识或缓存的常量,需以"KEY_"、"FID_"、"ENTRY_"或"SUBENTRY_"作为变量的前缀。<br>
|
||||||
*
|
*
|
||||||
* @author shkd
|
* @author shkd
|
||||||
* @date 2024-10-25 13:35:51
|
* @date 2024-10-25 14:27:06
|
||||||
*/
|
*/
|
||||||
public class AppflgConstant {
|
public class AppflgConstant {
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
package shkd.sys.sys.plugin.api;
|
||||||
|
|
||||||
|
import kd.bos.openapi.api.plugin.ApiSavePlugin;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description
|
||||||
|
* @Author Tao
|
||||||
|
* @Date 2024/11/7
|
||||||
|
*/
|
||||||
|
public class PayBillApiSavePlugin implements ApiSavePlugin {
|
||||||
|
@Override
|
||||||
|
public List<Map<String, Object>> preHandleRequestData(List<Map<String, Object>> reqData) {
|
||||||
|
return reqData;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue