jiangqs
2023-04-29 28e19d6740469ad5c2d1061faa07d29cd9520a13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.system.service.impl.shop;
 
import com.ruoyi.system.domain.pojo.shop.ShopTransferRecord;
import com.ruoyi.system.mapper.shop.ShopTransferRecordMapper;
import com.ruoyi.system.service.shop.ShopTransferRecordService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 商户员工转移记录 服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-04-25
 */
@Service
public class ShopTransferRecordServiceImpl extends ServiceImpl<ShopTransferRecordMapper, ShopTransferRecord> implements ShopTransferRecordService {
 
}