Junjie
昨天 3e2bf767e6744eda2f6bda2372834d7b0b541313
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 {
}