songhuangfeng123
2022-07-08 404093ca6bf6d521631b863aae92ea4ebc333bb3
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.emergency.repository;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.safePlatform.emergency.entity.EmergencyPlanAreaInfo;
import com.gkhy.safePlatform.emergency.entity.EmergencyPlanAreaInfoDO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
 
@Repository
public interface EmergencyPlanAreaInfoRepository extends BaseMapper<EmergencyPlanAreaInfo> {
 
    void addEmergencyPlanArea(EmergencyPlanAreaInfo emergencyPlanAreaInfo);
 
    List<EmergencyPlanAreaInfoDO> selectEmergencyPlanAreaByPlanId(@Param("planId") Long planId);
 
    void deleteEmergencyPlanAreaByIds(List<Long> ids);
 
    void deleteEmergencyPlanAreaByPlanId(@Param("planId")Long planId);
}