浏览代码

添加公式表

cxd 7 月之前
父节点
当前提交
2dc39346e1
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      gqy-system/src/main/java/com/gqy/document/service/IFormulaService.java

+ 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);
+
+}