ITComplainDealEvaluateService.java 1.99 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 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 63 64 65 66 67 68 69 70
package com.zehong.system.service;

import com.zehong.system.domain.TComplainDealEvaluate;

import java.util.List;

/**
 * 燃气投诉处置-评价Service接口
 * 
 * @author zehong
 * @date 2024-06-06
 */
public interface ITComplainDealEvaluateService 
{
    /**
     * 查询燃气投诉处置-评价
     * 
     * @param complainDealEvaluateId 燃气投诉处置-评价ID
     * @return 燃气投诉处置-评价
     */
    public TComplainDealEvaluate selectTComplainDealEvaluateById(Long complainDealEvaluateId);

    /**
     * 查询燃气投诉处置-评价
     *
     * @param complainDealId 燃气投诉处置
     * @return 燃气投诉处置-评价
     */
    public TComplainDealEvaluate selectTComplainDealEvaluateByComplainDealId(Long complainDealId);

    /**
     * 查询燃气投诉处置-评价列表
     * 
     * @param tComplainDealEvaluate 燃气投诉处置-评价
     * @return 燃气投诉处置-评价集合
     */
    public List<TComplainDealEvaluate> selectTComplainDealEvaluateList(TComplainDealEvaluate tComplainDealEvaluate);

    /**
     * 新增燃气投诉处置-评价
     * 
     * @param tComplainDealEvaluate 燃气投诉处置-评价
     * @return 结果
     */
    public int insertTComplainDealEvaluate(TComplainDealEvaluate tComplainDealEvaluate);

    /**
     * 修改燃气投诉处置-评价
     * 
     * @param tComplainDealEvaluate 燃气投诉处置-评价
     * @return 结果
     */
    public int updateTComplainDealEvaluate(TComplainDealEvaluate tComplainDealEvaluate);

    /**
     * 批量删除燃气投诉处置-评价
     * 
     * @param complainDealEvaluateIds 需要删除的燃气投诉处置-评价ID
     * @return 结果
     */
    public int deleteTComplainDealEvaluateByIds(Long[] complainDealEvaluateIds);

    /**
     * 删除燃气投诉处置-评价信息
     * 
     * @param complainDealEvaluateId 燃气投诉处置-评价ID
     * @return 结果
     */
    public int deleteTComplainDealEvaluateById(Long complainDealEvaluateId);
}