1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.ruoyi.shop.service.impl.shop;
|
| import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
| import com.ruoyi.shop.mapper.shop.ShopAppointableTimeMapper;
| import com.ruoyi.shop.service.shop.ShopAppointableTimeService;
| import com.ruoyi.system.api.domain.poji.shop.ShopAppointableTime;
|
| /**
| * @author zhibing.pu
| * @Date 2025/5/26 15:15
| */
| public class ShopAppointableTimeServiceImpl extends ServiceImpl<ShopAppointableTimeMapper, ShopAppointableTime> implements ShopAppointableTimeService {
| }
|
|