package cn.com.goldenwater.dcproj.controller.ducha; import cn.com.goldenwater.dcproj.model.GwSmsLog; import cn.com.goldenwater.dcproj.param.GwSmsLogParam; import cn.com.goldenwater.dcproj.service.GwSmsLogService; import cn.com.goldenwater.core.web.BaseController; import cn.com.goldenwater.core.web.BaseResponse; import cn.com.goldenwater.id.util.UuidUtil; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.apache.commons.lang3.StringUtils; 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.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** * @author * @date 2022-2-7 */ @Api(value = "短信日志管理",tags="短信日志管理") @RestController @RequestMapping("/gw/sms/log") public class GwSmsLogController extends BaseController { @Autowired private GwSmsLogService gwSmsLogService; @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 = gwSmsLogService.delete(id); return buildSuccessResponse(); } @ApiOperation(value = "根据ID获取短信日志(单表)") @RequestMapping(value = "/{id}", method = RequestMethod.GET) public BaseResponse get(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) { GwSmsLog gwSmsLog = gwSmsLogService.get(id); return buildSuccessResponse(gwSmsLog); } }