Pu Zhibing
4 天以前 4c4dc127cdc9c41f2bfb3c138108529856e031b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.supersavedriving.user.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.supersavedriving.user.modular.system.dao.TBranchOfficeAreaMapper;
import com.supersavedriving.user.modular.system.model.TBranchOfficeArea;
import com.supersavedriving.user.modular.system.service.ITBranchOfficeAreaService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 分公司 服务实现类
 * </p>
 *
 * @author stylefeng
 * @since 2023-02-21
 */
@Service
public class TBranchOfficeAreaServiceImpl extends ServiceImpl<TBranchOfficeAreaMapper, TBranchOfficeArea> implements ITBranchOfficeAreaService {
 
}