|
|
@@ -0,0 +1,25 @@
|
|
|
+package org.springblade.los.basic.zr.service;
|
|
|
+
|
|
|
+
|
|
|
+import org.springblade.core.mp.base.BaseService;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import org.springblade.los.basic.zr.entity.ZrLog;
|
|
|
+import org.springblade.los.basic.zr.vo.ZrLogVO;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 卓瑞远程接口调用日志 服务类
|
|
|
+ *
|
|
|
+ * @author Rain
|
|
|
+ */
|
|
|
+public interface IZrLogService extends BaseService<ZrLog> {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 自定义分页
|
|
|
+ *
|
|
|
+ * @param page 分页
|
|
|
+ * @param zrLog 参数
|
|
|
+ * @return 结果
|
|
|
+ */
|
|
|
+ IPage<ZrLogVO> selectZrLogPage(IPage<ZrLogVO> page, ZrLogVO zrLog);
|
|
|
+
|
|
|
+}
|