From 49168a1a5872a0e08337659c732add76c6fa75ba Mon Sep 17 00:00:00 2001 From: pan-houxiang <2663608154@qq.com> Date: Tue, 9 Dec 2025 11:42:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=93=81=E7=89=8C=E3=80=81=E4=BE=9B=E5=BA=94?= =?UTF-8?q?=E5=95=86=E4=BF=9D=E5=AD=98=E5=90=8E=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../plugin/operate/sys/BrandSaveAfterOp.java | 17 +++++++++++++++++ .../app/plugin/operate/sys/SupSaveAfterOp.java | 16 ++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 lc123/cloud/app/plugin/operate/sys/BrandSaveAfterOp.java create mode 100644 lc123/cloud/app/plugin/operate/sys/SupSaveAfterOp.java diff --git a/lc123/cloud/app/plugin/operate/sys/BrandSaveAfterOp.java b/lc123/cloud/app/plugin/operate/sys/BrandSaveAfterOp.java new file mode 100644 index 0000000..1c0be82 --- /dev/null +++ b/lc123/cloud/app/plugin/operate/sys/BrandSaveAfterOp.java @@ -0,0 +1,17 @@ +package tqq9.lc123.cloud.app.plugin.operate.sys; + +import kd.bos.dataentity.entity.DynamicObject; +import kd.bos.entity.plugin.AbstractOperationServicePlugIn; +import kd.bos.entity.plugin.args.AfterOperationArgs; +import kd.sdk.plugin.Plugin; + +/** + * 单据操作插件 + */ +public class BrandSaveAfterOp extends AbstractOperationServicePlugIn implements Plugin { + @Override + public void afterExecuteOperationTransaction(AfterOperationArgs e) { + super.afterExecuteOperationTransaction(e); + + } +} \ No newline at end of file diff --git a/lc123/cloud/app/plugin/operate/sys/SupSaveAfterOp.java b/lc123/cloud/app/plugin/operate/sys/SupSaveAfterOp.java new file mode 100644 index 0000000..21b32e7 --- /dev/null +++ b/lc123/cloud/app/plugin/operate/sys/SupSaveAfterOp.java @@ -0,0 +1,16 @@ +package tqq9.lc123.cloud.app.plugin.operate.sys; + +import kd.bos.entity.plugin.AbstractOperationServicePlugIn; +import kd.bos.entity.plugin.args.AfterOperationArgs; +import kd.sdk.plugin.Plugin; + +/** + * 单据操作插件 + */ +public class SupSaveAfterOp extends AbstractOperationServicePlugIn implements Plugin { + + @Override + public void afterExecuteOperationTransaction(AfterOperationArgs e) { + super.afterExecuteOperationTransaction(e); + } +} \ No newline at end of file