| package com.mzl.flower.mapper.transport; | 
|   | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import com.mzl.flower.dto.AreaDTO; | 
| import com.mzl.flower.entity.transport.TransportFeeArea; | 
| import io.lettuce.core.dynamic.annotation.Param; | 
| import org.springframework.stereotype.Repository; | 
|   | 
| import java.util.List; | 
|   | 
| @Repository | 
| public interface TransportFeeAreaMapper extends BaseMapper<TransportFeeArea> { | 
|     void clearTransportArea(@Param("transportId") Long transportId, @Param("areaList") List<AreaDTO> areaList); | 
| } |