| | |
| | | package com.ruoyi.goods.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.fasterxml.jackson.core.JsonProcessingException; |
| | | import com.ruoyi.common.core.utils.page.PageDTO; |
| | | import com.ruoyi.goods.controller.management.dto.GoodsSeckillDTO; |
| | | import com.ruoyi.goods.controller.management.dto.GoodsSeckillQuery; |
| | |
| | | * |
| | | * @param seckillId 秒杀id |
| | | */ |
| | | void startSeckill(Long seckillId); |
| | | void startSeckill(Long seckillId) throws JsonProcessingException; |
| | | |
| | | /** |
| | | * 结束秒杀 |
| | | * |
| | | * @param seckillId 秒杀id |
| | | */ |
| | | void endSeckill(Long seckillId); |
| | | void endSeckill(Long seckillId) throws JsonProcessingException; |
| | | } |