ITInsSpotRecInforService.java 1.79 KB
Newer Older
耿迪迪's avatar
耿迪迪 committed
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
package com.zehong.system.service;

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

/**
 * 监督检查-调查结果Service接口
 * 
 * @author zehong
 * @date 2024-05-22
 */
public interface ITInsSpotRecInforService 
{
    /**
     * 查询监督检查-调查结果
     * 
     * @param fInsSpotRecInforId 监督检查-调查结果ID
     * @return 监督检查-调查结果
     */
    public TInsSpotRecInfor selectTInsSpotRecInforById(Long fInsSpotRecInforId);

    /**
     * 查询监督检查-调查结果列表
     * 
     * @param tInsSpotRecInfor 监督检查-调查结果
     * @return 监督检查-调查结果集合
     */
    public List<TInsSpotRecInfor> selectTInsSpotRecInforList(TInsSpotRecInfor tInsSpotRecInfor);

    /**
     * 新增监督检查-调查结果
     * 
     * @param tInsSpotRecInfor 监督检查-调查结果
     * @return 结果
     */
    public int insertTInsSpotRecInfor(TInsSpotRecInfor tInsSpotRecInfor);

    /**
     * 修改监督检查-调查结果
     * 
     * @param tInsSpotRecInfor 监督检查-调查结果
     * @return 结果
     */
    public int updateTInsSpotRecInfor(TInsSpotRecInfor tInsSpotRecInfor);

    /**
     * 批量删除监督检查-调查结果
     * 
     * @param fInsSpotRecInforIds 需要删除的监督检查-调查结果ID
     * @return 结果
     */
    public int deleteTInsSpotRecInforByIds(Long[] fInsSpotRecInforIds);

    /**
     * 删除监督检查-调查结果信息
     * 
     * @param fInsSpotRecInforId 监督检查-调查结果ID
     * @return 结果
     */
    public int deleteTInsSpotRecInforById(Long fInsSpotRecInforId);
61 62 63 64 65 66 67

    /**
     * 上传调查结果
     * @param fInsSpotRecInforId 调查结果id
     * @return
     */
    int reportSpotRecInfo(Long fInsSpotRecInforId) throws Exception;
耿迪迪's avatar
耿迪迪 committed
68
}