ITPlanInfoService.java 1.32 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 61 62
package com.zehong.system.service;

import com.zehong.system.domain.TPlanInfo;

import java.util.List;

/**
 * 应急处置方案Service接口
 * 
 * @author zehong
 * @date 2022-06-01
 */
public interface ITPlanInfoService 
{
    /**
     * 查询应急处置方案
     * 
     * @param planId 应急处置方案ID
     * @return 应急处置方案
     */
    public TPlanInfo selectTPlanInfoById(Long planId);

    /**
     * 查询应急处置方案列表
     * 
     * @param tPlanInfo 应急处置方案
     * @return 应急处置方案集合
     */
    public List<TPlanInfo> selectTPlanInfoList(TPlanInfo tPlanInfo);

    /**
     * 新增应急处置方案
     * 
     * @param tPlanInfo 应急处置方案
     * @return 结果
     */
    public int insertTPlanInfo(TPlanInfo tPlanInfo);

    /**
     * 修改应急处置方案
     * 
     * @param tPlanInfo 应急处置方案
     * @return 结果
     */
    public int updateTPlanInfo(TPlanInfo tPlanInfo);

    /**
     * 批量删除应急处置方案
     * 
     * @param planIds 需要删除的应急处置方案ID
     * @return 结果
     */
    public int deleteTPlanInfoByIds(Long[] planIds);

    /**
     * 删除应急处置方案信息
     * 
     * @param planId 应急处置方案ID
     * @return 结果
     */
    public int deleteTPlanInfoById(Long planId);
}