#
zwl
2026-02-09 ad79ba405b2d1ac96423f88f4e8a76c584b9d38a
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.BasOutArea;
import com.zy.asrs.mapper.BasOutAreaMapper;
import com.zy.asrs.service.BasOutAreaService;
import org.springframework.stereotype.Service;
 
@Service
public class BasOutAreaServiceImpl extends ServiceImpl<BasOutAreaMapper, BasOutArea> implements BasOutAreaService {
}