20 lines
551 B
Java
20 lines
551 B
Java
|
|
package com.whdc.service.impl;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
|
import com.whdc.mapper.QXWarningMapper;
|
||
|
|
import com.whdc.model.entity.QXWarning;
|
||
|
|
import com.whdc.service.IQXWarningService;
|
||
|
|
import lombok.extern.slf4j.Slf4j;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
@Slf4j
|
||
|
|
@Service
|
||
|
|
public class QXWarningServiceImpl extends ServiceImpl<QXWarningMapper, QXWarning> implements IQXWarningService {
|
||
|
|
@Override
|
||
|
|
public List<QXWarning> find(QXWarning dto) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
}
|