Parcourir la source

Merge remote-tracking branch 'origin/master'

ly il y a 3 ans
Parent
commit
c5fb2f7467

+ 61 - 0
master/src/main/java/com/ruoyi/project/sems/service/ITReportThirdService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.project.sems.service;
+
+import java.util.List;
+
+import com.ruoyi.project.sems.domain.TReportThird;
+
+/**
+ * 压力容器第三方数据文件Service接口
+ *
+ * @author ruoyi
+ * @date 2021-11-16
+ */
+public interface ITReportThirdService {
+    /**
+     * 查询压力容器第三方数据文件
+     *
+     * @param id 压力容器第三方数据文件ID
+     * @return 压力容器第三方数据文件
+     */
+    public TReportThird selectTReportThirdById(Long id);
+
+    /**
+     * 查询压力容器第三方数据文件列表
+     *
+     * @param tReportYlrqThird 压力容器第三方数据文件
+     * @return 压力容器第三方数据文件集合
+     */
+    public List<TReportThird> selectTReportThirdList(TReportThird tReportYlrqThird);
+
+    /**
+     * 新增压力容器第三方数据文件
+     *
+     * @param tReportYlrqThird 压力容器第三方数据文件
+     * @return 结果
+     */
+    public int insertTReportThird(TReportThird tReportYlrqThird);
+
+    /**
+     * 修改压力容器第三方数据文件
+     *
+     * @param tReportYlrqThird 压力容器第三方数据文件
+     * @return 结果
+     */
+    public int updateTReportThird(TReportThird tReportYlrqThird);
+
+    /**
+     * 批量删除压力容器第三方数据文件
+     *
+     * @param ids 需要删除的压力容器第三方数据文件ID
+     * @return 结果
+     */
+    public int deleteTReportThirdByIds(Long[] ids);
+
+    /**
+     * 删除压力容器第三方数据文件信息
+     *
+     * @param id 压力容器第三方数据文件ID
+     * @return 结果
+     */
+    public int deleteTReportThirdById(Long id);
+}