TTroubleStandingBookMapper.java 2.38 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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
package com.zehong.system.mapper;

import java.util.List;
import java.util.Map;

import com.zehong.system.domain.Statistics;
import com.zehong.system.domain.TTroubleStandingBook;
import com.zehong.system.domain.form.TTroubleStandingBookForm;
import com.zehong.system.domain.vo.TTroubleStandingBookVo;

/**
 * 事故台账Mapper接口
 *
 * @author zehong
 * @date 2022-02-09
 */
public interface TTroubleStandingBookMapper
{
    /**
     * 查询事故台账
     *
     * @param troubleId 事故台账ID
     * @return 事故台账
     */
    public TTroubleStandingBook selectTTroubleStandingBookById(Long troubleId);

    /**
     * 查询事故台账列表
     *
     * @param tTroubleStandingBook 事故台账
     * @return 事故台账集合
     */
    public List<TTroubleStandingBook> selectTTroubleStandingBookList(TTroubleStandingBookForm tTroubleStandingBook);

    /**
     * 事故台账统计
     *
     * @return 事故台账统计
     */
    public TTroubleStandingBookVo selectTTroubleStandingBookStatistic();

    /**
     * 新增事故台账
     *
     * @param tTroubleStandingBook 事故台账
     * @return 结果
     */
    public int insertTTroubleStandingBook(TTroubleStandingBook tTroubleStandingBook);

    /**
     * 修改事故台账
     *
     * @param tTroubleStandingBook 事故台账
     * @return 结果
     */
    public int updateTTroubleStandingBook(TTroubleStandingBook tTroubleStandingBook);

    /**
     * 删除事故台账
     *
     * @param troubleId 事故台账ID
     * @return 结果
     */
    public int deleteTTroubleStandingBookById(Long troubleId);

    /**
     * 批量删除事故台账
     *
     * @param troubleIds 需要删除的数据ID
     * @return 结果
     */
    public int deleteTTroubleStandingBookByIds(Long[] troubleIds);

    /**
     * 查询统计信息
     * @param sevenDate
     * @return
     */
    List<Statistics> accidentLedger(List<String> sevenDate);
    /**
     * 统计每月事故数量
     * @return
     */
    List<Map<String,Object>> selectTrobleCountByMonth();
    /**
     * 统计每年事故数量
     * @return
     */
    List<Map<String,Object>> selectTrobleCountByYear();
    /**
     * 统计乡镇事故数量
     * @return
     */
    List<Map<String,Object>> selectTrobleRanking();
    /**
     * 根据事故原因统计数量
     * @return
     */
    List<Map<String,Object>> selectTrobleReason();

}