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