puzhibing
2023-08-08 05e13dc68b3db44868d9e02a10ccc330366a49c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.supersavedriving.user.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.supersavedriving.user.modular.system.dao.BranchOfficeMapper;
import com.supersavedriving.user.modular.system.model.BranchOffice;
import com.supersavedriving.user.modular.system.service.IBranchOfficeService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @date 2023/8/3 14:22
 */
@Service
public class BranchOfficeServiceImpl extends ServiceImpl<BranchOfficeMapper, BranchOffice> implements IBranchOfficeService {
}