package com.hxzk.gps.controller.SMS; import cn.dev33.satoken.annotation.SaCheckLogin; import com.hxzk.gps.dto.TableSearchResult.TableSearchResult; import com.hxzk.gps.result.ResultTable; import com.hxzk.gps.service.Sms.TbSmsReminderService; import com.hxzk.gps.service.Sms.TbVoicetipService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RestController; /** *

* 前端控制器 *

* * @author YuZhiTong * @since 2025-05-23 */ @RestController @RequestMapping("/MsgReminder") @Api("信息提示") public class TbVoicetipController { @Autowired private TbVoicetipService voicetipService; @SaCheckLogin @ApiOperation(value = "平台信息提示列表接口", notes = "该接口提供了平台信息提示列表查询功能") @PostMapping("FindMsgReminderInfo") public ResultTable FindMsgReminderInfo(@RequestBody TableSearchResult TableSearchResult){ return voicetipService.FindMsgReminderInfo(TableSearchResult); } }