| | |
| | | import com.mzl.flower.base.ReturnDataDTO; |
| | | import com.mzl.flower.dto.request.sms.SmsTaskDTO; |
| | | import com.mzl.flower.dto.request.sms.SmsTaskQueryDTO; |
| | | import com.mzl.flower.dto.response.coupon.CouponTemplateUserVO; |
| | | import com.mzl.flower.dto.response.coupon.CouponTemplateVO; |
| | | import com.mzl.flower.dto.response.sms.SmsSelectVO; |
| | | import com.mzl.flower.dto.response.sms.SmsTaskVO; |
| | | import com.mzl.flower.service.sms.SmsTaskService; |
| | | import com.mzl.flower.utils.ConverterUtil; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.RequiredArgsConstructor; |
| | |
| | | } |
| | | |
| | | |
| | | @GetMapping("/{id}") |
| | | @ApiOperation(value = "详情", notes = "详情") |
| | | public ResponseEntity<ReturnDataDTO> get(@PathVariable Long id) { |
| | | SmsTaskVO smsTaskVO = smsTaskService.getDetailById(id); |
| | | return returnData(R.SUCCESS.getCode(), smsTaskVO); |
| | | } |
| | | |
| | | } |