| | |
| | | import com.ruoyi.system.service.config.RecommendCooperationService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @RequestMapping("/mer/config") |
| | | public class MerConfigController { |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private RecommendCooperationService recommendCooperationService; |
| | | |
| | | @RequestMapping(value = "/pageMerShopRecommend", method = RequestMethod.POST) |
| | |
| | | recommendCooperationService.recommendCooperation(merRecommendCooperationDto); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | |
| | | } |