From 34981c30a78e8bbd7791131059a9210f9928b62c Mon Sep 17 00:00:00 2001
From: 刘光辉 <347230014@qq.com>
Date: 星期四, 17 九月 2026 09:24:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master
---
jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/service/LeaveApplyService.java | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 58 insertions(+), 0 deletions(-)
diff --git a/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/service/LeaveApplyService.java b/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/service/LeaveApplyService.java
new file mode 100644
index 0000000..a4f407b
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/service/LeaveApplyService.java
@@ -0,0 +1,58 @@
+package jnpf.service;
+
+import jnpf.base.service.SuperService;
+import jnpf.entity.LeaveApplyEntity;
+import jnpf.exception.WorkFlowException;
+import jnpf.model.leaveapply.LeaveApplyForm;
+
+/**
+ * 娴佺▼琛ㄥ崟銆愯鍋囩敵璇枫��
+ *
+ * @author JNPF寮�鍙戝钩鍙扮粍
+ * @version V3.1.0
+ * @copyright 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙�
+ * @date 2019骞�9鏈�29鏃� 涓婂崍9:18
+ */
+public interface LeaveApplyService extends SuperService<LeaveApplyEntity> {
+
+ /**
+ * 淇℃伅
+ *
+ * @param id 涓婚敭鍊�
+ * @return
+ */
+ LeaveApplyEntity getInfo(String id);
+
+ /**
+ * 淇濆瓨
+ *
+ * @param id 涓婚敭鍊�
+ * @param entity 瀹炰綋瀵硅薄
+ * @throws WorkFlowException 寮傚父
+ */
+ void save(String id, LeaveApplyEntity entity, LeaveApplyForm form);
+
+ /**
+ * 鎻愪氦
+ *
+ * @param id 涓婚敭鍊�
+ * @param entity 瀹炰綋瀵硅薄
+ * @throws WorkFlowException 寮傚父
+ */
+ void submit(String id, LeaveApplyEntity entity, LeaveApplyForm form);
+
+ /**
+ * 鏇存敼鏁版嵁
+ *
+ * @param id 涓婚敭鍊�
+ * @param data 瀹炰綋瀵硅薄
+ */
+ void data(String id, String data);
+
+ /**
+ * 鍒犻櫎
+ *
+ * @param entity 瀹炰綋
+ */
+ void delete(LeaveApplyEntity entity);
+}
--
Gitblit v1.8.0