| | |
| | | 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; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | | * 分公司逻辑类 |
| | | * @author pzb |
| | | * @Date 2023/2/3 14:48 |
| | | * @author zhibing.pu |
| | | * @date 2023/8/3 14:22 |
| | | */ |
| | | @Service |
| | | public class BranchOfficeServiceImpl extends ServiceImpl<BranchOfficeMapper, BranchOffice> implements IBranchOfficeService { |
| | | |
| | | |
| | | |
| | | } |