代码提交
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.njcn.harmonic.mapper.dim;
|
||||
|
||||
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
|
||||
import com.njcn.harmonic.pojo.dto.LineDataDto;
|
||||
import com.njcn.harmonic.pojo.po.dim.RDimVoltageD;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 母线不同电压等级指标数据-日表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author xuyang
|
||||
* @since 2023-11-27
|
||||
*/
|
||||
public interface RDimVoltageDMapper extends MppBaseMapper<RDimVoltageD> {
|
||||
|
||||
List<LineDataDto> getLineData(@Param("startTime") String startTime, @Param("endTime") String endTime, @Param("collection") Set<String> list);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.njcn.harmonic.mapper.dim;
|
||||
|
||||
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
|
||||
import com.njcn.harmonic.pojo.po.dim.RDimVoltageM;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 区域母线**电压等级**指标标准差、平均值-月表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author xuyang
|
||||
* @since 2023-11-29
|
||||
*/
|
||||
public interface RDimVoltageMMapper extends MppBaseMapper<RDimVoltageM> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.njcn.harmonic.mapper.dim;
|
||||
|
||||
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
|
||||
import com.njcn.harmonic.pojo.po.dim.RDimVoltageY;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 区域母线**电压等级**指标标准差、平均值-年表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author xuyang
|
||||
* @since 2023-11-29
|
||||
*/
|
||||
public interface RDimVoltageYMapper extends MppBaseMapper<RDimVoltageY> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user