| | |
| | | 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.GoodsEvaluate; |
| | | import com.ruoyi.other.vo.GoodsEvaluateVO; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | * @since 2024-11-20 |
| | | */ |
| | | public interface GoodsEvaluateService extends IService<GoodsEvaluate> { |
| | | void addGoodsEvaluate(@RequestBody GoodsEvaluateVO goodsEvaluateVO); |
| | | R addGoodsEvaluate(@RequestBody GoodsEvaluate GoodsEvaluate); |
| | | } |