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