ITInspectionDataService.java 1.34 KB
Newer Older
1 2 3 4 5 6 7 8 9
package com.zehong.system.service;

import java.util.List;
import com.zehong.system.domain.TInspectionData;

/**
 * 巡检记录Service接口
 * 
 * @author zehong
10
 * @date 2021-07-21
11 12 13 14 15 16 17 18 19
 */
public interface ITInspectionDataService 
{
    /**
     * 查询巡检记录
     * 
     * @param dataId 巡检记录ID
     * @return 巡检记录
     */
20
    public TInspectionData selectTInspectionDataById(int dataId);
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

    /**
     * 查询巡检记录列表
     * 
     * @param tInspectionData 巡检记录
     * @return 巡检记录集合
     */
    public List<TInspectionData> selectTInspectionDataList(TInspectionData tInspectionData);

    /**
     * 新增巡检记录
     * 
     * @param tInspectionData 巡检记录
     * @return 结果
     */
    public int insertTInspectionData(TInspectionData tInspectionData);

    /**
     * 修改巡检记录
     * 
     * @param tInspectionData 巡检记录
     * @return 结果
     */
    public int updateTInspectionData(TInspectionData tInspectionData);

    /**
     * 批量删除巡检记录
     * 
     * @param dataIds 需要删除的巡检记录ID
     * @return 结果
     */
52
    public int deleteTInspectionDataByIds(int[] dataIds);
53 54 55 56 57 58 59

    /**
     * 删除巡检记录信息
     * 
     * @param dataId 巡检记录ID
     * @return 结果
     */
60
    public int deleteTInspectionDataById(int dataId);
61
}