32 lines
1.1 KiB
Java
32 lines
1.1 KiB
Java
package com.peanut.modules.common.controller;
|
|
|
|
import com.peanut.common.utils.R;
|
|
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);
|
|
}
|
|
|
|
}
|