| | |
| | | package com.ruoyi.other.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.other.api.domain.GoodsBargainPrice; |
| | | import com.ruoyi.other.vo.AddGoodsBargainPriceVo; |
| | | import com.ruoyi.other.vo.GoodsBargainPriceInfo; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-11-20 |
| | | */ |
| | | public interface GoodsBargainPriceService extends IService<GoodsBargainPrice> { |
| | | |
| | | |
| | | /** |
| | | * 获取商品特殊售价明细 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | GoodsBargainPriceInfo getGoodsBargainPriceInfo(Integer id); |
| | | |
| | | |
| | | /** |
| | | * 提交特殊售价申请 |
| | | * @param vo |
| | | * @return |
| | | */ |
| | | R addGoodsBargainPrice(AddGoodsBargainPriceVo vo); |
| | | |
| | | } |