package cn.com.goldenwater.dcproj.controller.system; import cn.com.goldenwater.dcproj.model.Feedback; import cn.com.goldenwater.dcproj.service.FeedbackService; import cn.com.goldenwater.core.web.BaseController; import cn.com.goldenwater.core.web.BaseResponse; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.util.Assert; import org.springframework.web.bind.annotation.PathVariable; 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; /** * @author lhc * @date 2020-7-15 */ @Api(value = "用户意见收集管理",tags="用户意见收集管理") @RestController @RequestMapping("/gw/sys/feedback") public class FeedbackController extends BaseController { private Logger logger = LoggerFactory.getLogger(getClass()); @Autowired private FeedbackService feedbackService; @ApiOperation(value = "添加用户意见收集") @RequestMapping(value = "/add", method = RequestMethod.POST) public BaseResponse insert(@ApiParam(name = "feedback", value = "Feedback", required = true) @RequestBody Feedback feedback) { int ret = feedbackService.insert(feedback); return buildSuccessResponse(feedback); } @ApiOperation(value = "根据ID删除用户意见收集") @RequestMapping(value = "delete/{id}", method = RequestMethod.POST) public BaseResponse delete(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) { int ret = feedbackService.delete(id); return buildSuccessResponse(); } @ApiOperation(value = "更新用户意见收集信息") @RequestMapping(value = "/update", method = RequestMethod.POST) public BaseResponse update(@ApiParam(name = "feedback", value = "Feedback", required = true) @RequestBody Feedback feedback) { Assert.notNull(feedback.getId(), "主键id为必填参数"); int ret = feedbackService.update(feedback); return buildSuccessResponse(feedback); } @ApiOperation(value = "根据ID获取用户意见收集(单表)") @RequestMapping(value = "/{id}", method = RequestMethod.GET) public BaseResponse get(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) { Feedback feedback = feedbackService.get(id); return buildSuccessResponse(feedback); } }