|
@@ -2,11 +2,12 @@ package com.rongwei.bscommon.sys.dao;
|
|
|
|
|
|
import com.rongwei.bsentity.domain.EquGdyRecordDo;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
-import com.spire.ms.System.Collections.Generic.List;
|
|
|
+
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -15,7 +16,7 @@ import java.util.Date;
|
|
|
@Mapper
|
|
|
public interface EquGdyRecordDao extends BaseMapper<EquGdyRecordDo> {
|
|
|
|
|
|
- List<String> getMeteridByDate(@Param("startDate") Date startDate,@Param("tenantId") String tenantId);
|
|
|
+ List<String> getMeteridByDate(@Param("startDate") Date startDate, @Param("tenantId") String tenantId);
|
|
|
|
|
|
}
|
|
|
|