package com.ruoyi.mall.mapper; import java.util.List; import com.ruoyi.mall.domain.MallGoodsPostFee; /** * 商品邮费Mapper接口 * * @author chang * @date 2021-11-25 */ public interface MallGoodsPostFeeMapper { /** * 查询商品邮费 * * @param id 商品邮费主键 * @return 商品邮费 */ public MallGoodsPostFee selectMallGoodsPostFeeById(Long id); /** * 查询商品邮费列表 * * @param mallGoodsPostFee 商品邮费 * @return 商品邮费集合 */ public List selectMallGoodsPostFeeList(MallGoodsPostFee mallGoodsPostFee); /** * 新增商品邮费 * * @param mallGoodsPostFee 商品邮费 * @return 结果 */ public int insertMallGoodsPostFee(MallGoodsPostFee mallGoodsPostFee); /** * 修改商品邮费 * * @param mallGoodsPostFee 商品邮费 * @return 结果 */ public int updateMallGoodsPostFee(MallGoodsPostFee mallGoodsPostFee); /** * 删除商品邮费 * * @param id 商品邮费主键 * @return 结果 */ public int deleteMallGoodsPostFeeById(Long id); /** * 批量删除商品邮费 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteMallGoodsPostFeeByIds(Long[] ids); }