Browse Source

添加公式表

cxd 7 tháng trước cách đây
mục cha
commit
2dc39346e1

+ 19 - 0
gqy-system/src/main/java/com/gqy/document/service/IFormulaService.java

@@ -0,0 +1,19 @@
+package com.gqy.document.service;
+
+import com.gqy.common.core.domain.AjaxResult;
+import com.gqy.document.domain.Formula;
+
+import java.util.List;
+
+/**
+ * 公式管理Service接口
+ *
+ */
+public interface IFormulaService {
+
+    /**
+     * 查询公式列表
+     */
+    public List<Formula> search(Formula formula);
+
+}