package com.zy.asrs.service.impl;
|
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
import com.zy.asrs.entity.ReportData;
|
import com.zy.asrs.entity.ReportDataLog;
|
import com.zy.asrs.mapper.ReportDataLogMapper;
|
import com.zy.asrs.mapper.ReportDataMapper;
|
import com.zy.asrs.service.ReportDataLogService;
|
import com.zy.asrs.service.ReportDataService;
|
import org.springframework.stereotype.Service;
|
|
@Service
|
public class ReportDataLogServiceImpl extends ServiceImpl<ReportDataLogMapper, ReportDataLog> implements ReportDataLogService {
|
|
|
}
|