Browse Source

feature 代码提交

xiahan 9 months ago
parent
commit
c0ecf68e67

+ 3 - 2
cx-equipment/cx-equipment-common/src/main/java/com/rongwei/bscommon/sys/dao/EquGdyRecordDao.java

@@ -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);
 
 }