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 {
|
}
|