#
lsh
2024-05-17 f84127457cf5ebacb0af4b4a4667846b23312a19
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.BasExtMapper;
import com.zy.asrs.entity.BasExt;
import com.zy.asrs.service.BasExtService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basExtService")
public class BasExtServiceImpl extends ServiceImpl<BasExtMapper, BasExt> implements BasExtService {
 
}