ITConGasProIncService.java 2.58 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
package com.zehong.system.service;

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

/**
 * 第三方施工-涉气第三方施工意外事件Service接口
 * 
 * @author zehong
 * @date 2024-06-27
 */
public interface ITConGasProIncService 
{
    /**
     * 查询第三方施工-涉气第三方施工意外事件
     * 
     * @param fConGasProIncId 第三方施工-涉气第三方施工意外事件ID
     * @return 第三方施工-涉气第三方施工意外事件
     */
    public TConGasProInc selectTConGasProIncById(Long fConGasProIncId);

    /**
     * 查询第三方施工-涉气第三方施工意外事件列表
     * 
     * @param tConGasProInc 第三方施工-涉气第三方施工意外事件
     * @return 第三方施工-涉气第三方施工意外事件集合
     */
    public List<TConGasProInc> selectTConGasProIncList(TConGasProInc tConGasProInc);

30 31 32 33 34 35 36
    /**
     * 查询第三方施工-涉气第三方施工意外事件列表-导出
     *
     * @param tConGasProInc 第三方施工-涉气第三方施工意外事件
     * @return 第三方施工-涉气第三方施工意外事件集合
     */
    List<TConGasProInc> exportTConGasProIncList(TConGasProInc tConGasProInc);
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    /**
     * 新增第三方施工-涉气第三方施工意外事件
     * 
     * @param tConGasProInc 第三方施工-涉气第三方施工意外事件
     * @return 结果
     */
    public int insertTConGasProInc(TConGasProInc tConGasProInc);

    /**
     * 修改第三方施工-涉气第三方施工意外事件
     * 
     * @param tConGasProInc 第三方施工-涉气第三方施工意外事件
     * @return 结果
     */
    public int updateTConGasProInc(TConGasProInc tConGasProInc);

    /**
     * 批量删除第三方施工-涉气第三方施工意外事件
     * 
     * @param fConGasProIncIds 需要删除的第三方施工-涉气第三方施工意外事件ID
     * @return 结果
     */
    public int deleteTConGasProIncByIds(Long[] fConGasProIncIds);

    /**
     * 删除第三方施工-涉气第三方施工意外事件信息
     * 
     * @param fConGasProIncId 第三方施工-涉气第三方施工意外事件ID
     * @return 结果
     */
    public int deleteTConGasProIncById(Long fConGasProIncId);
耿迪迪's avatar
耿迪迪 committed
68 69 70 71 72 73 74

    /**
     * 上传第三方施工意外事件
     * @param fConGasProIncId 意外事件工id
     * @return
     */
    int reportAccidentInfo(Long fConGasProIncId) throws Exception ;
75 76 77 78 79 80 81

    /**
     * 企业端上传第三方施工意外事件
     * @param fConGasProIncId 意外事件工id
     * @return
     */
    int entReportConGasProInfo(Long fConGasProIncId);
82
}