1
phpcjl
2024-12-17 cf4e9e9e041545f77f57f7a0c3485d66efe5ce19
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/VipGoodMapper.java
New file
@@ -0,0 +1,21 @@
package com.ruoyi.other.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.other.api.domain.VipGood;
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author luodangjia
 * @since 2024-11-20
 */
public interface VipGoodMapper extends BaseMapper<VipGood> {
    /**
     * 查询指定商品的指定会员价格
     */
    VipGood selectVipGood(Long goodsId, Integer vipId);
}