gongzuming
2024-08-28 2aa5d7d70e42543c18abfa8af0f25119b6f982c0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}