package com.panzhihua.sangeshenbian.service.impl;
|
|
import com.panzhihua.sangeshenbian.model.entity.BcRegion;
|
import com.panzhihua.sangeshenbian.dao.BcRegionMapper;
|
import com.panzhihua.sangeshenbian.service.IBcRegionService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 行政区划表 服务实现类
|
* </p>
|
*
|
* @author
|
* @since 2025-02-23
|
*/
|
@Service
|
public class BcRegionServiceImpl extends ServiceImpl<BcRegionMapper, BcRegion> implements IBcRegionService {
|
|
}
|