17 lines
326 B
Java
17 lines
326 B
Java
|
|
package com.celnet.datadump.service;
|
||
|
|
|
||
|
|
import com.celnet.datadump.entity.DataReportDetail;
|
||
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <p>
|
||
|
|
* 数据报表详情 服务类
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* @author Red
|
||
|
|
* @since 2023-03-10
|
||
|
|
*/
|
||
|
|
public interface DataReportDetailService extends IService<DataReportDetail> {
|
||
|
|
|
||
|
|
}
|