郑永安
2023-06-19 451e341df739f387201914b67323efa1c4f4c8d3
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.system.service.company.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.system.domain.company.AreaInfo;
import com.ruoyi.system.mapper.company.AreaInfoMapper;
import com.ruoyi.system.service.company.IAreaInfoService;
import org.springframework.stereotype.Service;
 
@Service
public class AreaInfoServiceImpl extends ServiceImpl<AreaInfoMapper, AreaInfo> implements IAreaInfoService {
 
}