Browse Source

新增操作记录功能

周浩 9 years ago
parent
commit
73c4a9f442

+ 11 - 0
hsweb-web-dao-interface/src/main/java/org/hsweb/web/dao/history/HistoryMapper.java

@@ -0,0 +1,11 @@
+package org.hsweb.web.dao.history;
+
+import org.hsweb.web.bean.po.history.History;
+import org.hsweb.web.dao.GenericMapper;
+
+/**
+ * Created by zhouhao on 16-4-22.
+ */
+public interface HistoryMapper extends GenericMapper<History, String> {
+
+}