Pu Zhibing
7 天以前 41d7465a87e2a52740936a5969c5b182e5eb09b3
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.TActivityAreaMapper;
import com.supersavedriving.user.modular.system.model.TActivityArea;
import com.supersavedriving.user.modular.system.service.ITActivityAreaService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 分公司 服务实现类
 * </p>
 *
 * @author stylefeng
 * @since 2023-02-21
 */
@Service
public class TActivityAreaServiceImpl extends ServiceImpl<TActivityAreaMapper, TActivityArea> implements ITActivityAreaService {
 
}