package com.peanut.modules.common.controller; import com.peanut.common.utils.R; import com.peanut.modules.common.entity.TaihuWelfareEntity; import com.peanut.modules.common.service.TaihuWelfareService; import com.peanut.modules.common.to.ParamTo; import lombok.extern.slf4j.Slf4j; 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.RestController; import java.util.Map; @Slf4j @RestController("commonTaihuWelfare") @RequestMapping("common/taihuWelfare") public class TaihuWelfareController { @Autowired private TaihuWelfareService taihuWelfareService; @RequestMapping("/getTaihuWelfareArticleList") public R getTaihuWelfareArticleList(@RequestBody ParamTo param){ return taihuWelfareService.getTaihuWelfareArticleList(param); } @RequestMapping("/getTaihuWelfareProductList") public R getTaihuWelfareProductList(@RequestBody ParamTo param){ return taihuWelfareService.getTaihuWelfareProductList(param); } @RequestMapping("/getTaihuWelfareArticleDetail") public R getTaihuWelfareArticleDetail(@RequestBody Map map){ TaihuWelfareEntity byId = taihuWelfareService.getById(map.get("id")); return R.ok().put("result",byId); } }