Commit f08dc434 authored by 胡斌's avatar 胡斌

智能分析平台备份提交

parent f49cbb74
This diff is collapsed.
......@@ -19,7 +19,7 @@
<delete dir="${basedir}/build" />
<mkdir dir="${basedir}/build" />
</target>
n
<!-- 定义任务,编译src文件夹中的java文件,编译后的class文件放到创建的文件夹下。 -->
<target name="compile" depends="clean">
<javac target="1.6" debug="on" encoding="UTF-8" srcdir="${basedir}/src/main/java" destdir="${basedir}/build" includeantruntime="false">
......
......@@ -3,24 +3,19 @@ package com.hp.cmsz.repository;
/**
* @author Wang Feng
*/
import java.sql.Timestamp;
import java.util.Date;
import java.util.List;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.PagingAndSortingRepository;
import org.springframework.data.repository.query.Param;
import org.springframework.transaction.annotation.Transactional;
import com.hp.cmsz.entity.XcdDetailInfoView;
import com.hp.cmsz.entity.XcdWarningInfoView;
public interface XcdWarningInfoViewDao extends PagingAndSortingRepository<XcdWarningInfoView, Long>, JpaSpecificationExecutor<XcdWarningInfoView> {
//根绝筛选条件从视图中去查找符合条件的预警或隐患
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment