songhuangfeng123
2022-08-10 56ba708b25e1834eeb6c0366945b2c1fbafcfbe5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.gkhy.safePlatform.incidentManage.repository;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.safePlatform.incidentManage.entity.AccidentExpressCasualtyInfo;
import com.gkhy.safePlatform.incidentManage.entity.AccidentExpressCasualtyInfoDO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
 
@Repository
public interface AccidentExpressCasualtyInfoRepository extends BaseMapper<AccidentExpressCasualtyInfo> {
 
    List<AccidentExpressCasualtyInfoDO> selectByAccidentExpressId(@Param("accidentExpressId") Long accidentExpressId);
 
    void addAccidentExpressCasualty(AccidentExpressCasualtyInfo accidentExpressCasualtyInfo);
 
    void deleteAccidentExpressCasualtyById(@Param("id") Long id);
 
    void deleteAccidentExpressCasualtyByAccidentExpressId(@Param("id")Long id);
}