Administrator
2026-01-23 d158eb66602278d6f02b767b6639463ec4b671cb
1
2
3
4
5
6
7
8
9
10
11
12
13
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.MallCarriageRuleInfo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface MallCarriageRuleInfoMapper extends BaseMapper<MallCarriageRuleInfo> {
 
    List<MallCarriageRuleInfo> selectMallCarriageRuleInfoByRuleIdAndAreaAddress(@Param("ruleId")long id, @Param("areaAddress")String areaAddress);
 
}