|
|
@@ -4,6 +4,8 @@ import com.uas.credit.model.EnterpriseJson;
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* @author liuam
|
|
|
* @since 2018/7/17 0017 下午 22:18
|
|
|
@@ -11,6 +13,6 @@ import org.springframework.stereotype.Repository;
|
|
|
@Repository
|
|
|
public interface EnterpriseJsonDao extends JpaRepository<EnterpriseJson, Long> {
|
|
|
|
|
|
- EnterpriseJson findByCreateTime();
|
|
|
+ EnterpriseJson findByCreateTime(Date createTime);
|
|
|
|
|
|
}
|