New file |
| | |
| | | package com.ruoyi.shop.service.impl.shop; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.shop.mapper.shop.ShopNonAppointableTimeMapper; |
| | | import com.ruoyi.shop.service.shop.ShopNonAppointableTimeService; |
| | | import com.ruoyi.system.api.domain.poji.shop.ShopNonAppointableTime; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/5/26 14:31 |
| | | */ |
| | | @Service |
| | | public class ShopNonAppointableTimeServiceImpl extends ServiceImpl<ShopNonAppointableTimeMapper, ShopNonAppointableTime> implements ShopNonAppointableTimeService { |
| | | |
| | | |
| | | /** |
| | | * 每天凌晨3点删除3天前的数据 |
| | | */ |
| | | @Override |
| | | public void taskDelData() { |
| | | this.baseMapper.taskDelData(); |
| | | } |
| | | } |