zwl
2025-07-09 958883d6f4dac68fcbbccadb4e7f87e963eee0e8
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.common.openapi.service.impl;
 
import com.zy.asrs.common.openapi.mapper.ApiListMapper;
import com.zy.asrs.common.openapi.entity.ApiList;
import com.zy.asrs.common.openapi.service.ApiListService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("apiListService")
public class ApiListServiceImpl extends ServiceImpl<ApiListMapper, ApiList> implements ApiListService {
 
}