Junjie
1 天以前 cc9439b33e3f8ec9ba3e274bc3b392d3cef20ae6
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.zy.asrs.entity.BasStationErrLog;
import com.zy.asrs.mapper.BasStationErrLogMapper;
import com.zy.asrs.service.BasStationErrLogService;
import org.springframework.stereotype.Service;
 
@Service("basStationErrLogService")
public class BasStationErrLogServiceImpl extends ServiceImpl<BasStationErrLogMapper, BasStationErrLog> implements BasStationErrLogService {
}