修改LocalDateTime改为使用Date类型
This commit is contained in:
parent
833c692f17
commit
66b48737c5
|
|
@ -12,8 +12,7 @@ import org.jeecg.modules.base.entity.original.GardsSampleData;
|
|||
import org.jeecg.modules.base.entity.rnman.*;
|
||||
import org.jeecg.modules.entity.*;
|
||||
import org.jeecg.modules.entity.vo.*;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
|
|
@ -26,8 +25,8 @@ public interface SpectrumAnalysisMapper {
|
|||
List<String> stationTypes,
|
||||
boolean CollectStopB,
|
||||
boolean AcqStartB,
|
||||
LocalDateTime startTime,
|
||||
LocalDateTime endTime,
|
||||
@Param("startTime") Date startTime,
|
||||
@Param("endTime") Date endTime,
|
||||
List<String> userStations,
|
||||
boolean AllUsers,
|
||||
String orderField, String orderType);
|
||||
|
|
@ -35,8 +34,8 @@ public interface SpectrumAnalysisMapper {
|
|||
Page<GardsSampleDataSpectrum> loadSampleData(IPage<GardsSampleDataSpectrum> page,
|
||||
GardsSampleDataSpectrum gardsSampleData,
|
||||
List<String> stationTypes, boolean CollectStopB,
|
||||
boolean AcqStartB, LocalDateTime startTime,
|
||||
LocalDateTime endTime, List<String> userStations,
|
||||
boolean AcqStartB,@Param("startTime") Date startTime,
|
||||
@Param("endTime") Date endTime, List<String> userStations,
|
||||
boolean AllUsers, String orderField,
|
||||
String orderType);
|
||||
|
||||
|
|
@ -44,7 +43,7 @@ public interface SpectrumAnalysisMapper {
|
|||
|
||||
List<GardsXeResultsSpectrum> getXeDataList(Integer sampleId);
|
||||
|
||||
String getQCFilePath(String siteDetCode, LocalDateTime collectStart);
|
||||
String getQCFilePath(String siteDetCode, String collectStartStr);
|
||||
|
||||
CommentData viewComment(@Param(value = "sampleId") Integer sampleId);
|
||||
|
||||
|
|
@ -64,20 +63,20 @@ public interface SpectrumAnalysisMapper {
|
|||
@Param(value = "statisticsQueryData") StatisticsQueryData statisticsQueryData);
|
||||
|
||||
List<StatisticsData> statisticsQueryCollection(
|
||||
@Param(value = "startDate") LocalDateTime startDate,
|
||||
@Param(value = "endDate") LocalDateTime endDate, List<Integer> detectorList);
|
||||
@Param(value = "startDate") Date startDate,
|
||||
@Param(value = "endDate") Date endDate, List<Integer> detectorList);
|
||||
|
||||
List<StatisticsData> statisticsQueryAcquisition(
|
||||
@Param(value = "startDate") LocalDateTime startDate,
|
||||
@Param(value = "endDate") LocalDateTime endDate, List<Integer> detectorList);
|
||||
@Param(value = "startDate") Date startDate,
|
||||
@Param(value = "endDate") Date endDate, List<Integer> detectorList);
|
||||
|
||||
List<StatisticsData> statisticsQueryXeVolumn(
|
||||
@Param(value = "startDate") LocalDateTime startDate,
|
||||
@Param(value = "endDate") LocalDateTime endDate, List<Integer> detectorList);
|
||||
@Param(value = "startDate") Date startDate,
|
||||
@Param(value = "endDate") Date endDate, List<Integer> detectorList);
|
||||
|
||||
List<StatisticsData> statisticsQuerySampleVolumn(
|
||||
@Param(value = "startDate") LocalDateTime startDate,
|
||||
@Param(value = "endDate") LocalDateTime endDate, List<Integer> detectorList);
|
||||
@Param(value = "startDate") Date startDate,
|
||||
@Param(value = "endDate") Date endDate, List<Integer> detectorList);
|
||||
|
||||
String getStatus(@Param(value = "sampleId") Integer sampleId);
|
||||
|
||||
|
|
@ -207,12 +206,12 @@ public interface SpectrumAnalysisMapper {
|
|||
|
||||
List<ThresholdResultHistory> selectThresholdHistoryBySampleId(
|
||||
@Param("schemaName") String schemaName, @Param("sampleId") String sampleId,
|
||||
@Param("startTime") LocalDateTime startTime);
|
||||
@Param("startTime") Date startTime);
|
||||
|
||||
List<NuclideAnalysisInfo> selectXeDataPastYear(@Param("schemaName") String schemaName,
|
||||
@Param("sampleId") String sampleId,
|
||||
@Param(value = "userName") String userName,
|
||||
@Param("startTime") LocalDateTime startTime,
|
||||
@Param("endTime") LocalDateTime endTime);
|
||||
@Param("startTime") Date startTime,
|
||||
@Param("endTime") Date endTime);
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user