Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
manager
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
reyun
manager
Commits
1a41f230
Commit
1a41f230
authored
Nov 29, 2020
by
xioa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复表名
parent
62af79db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
TkioFlowHistoryRepository.java
...ain/java/common/repository/TkioFlowHistoryRepository.java
+1
-3
No files found.
src/main/java/common/repository/TkioFlowHistoryRepository.java
View file @
1a41f230
...
@@ -10,8 +10,6 @@ import java.math.BigDecimal;
...
@@ -10,8 +10,6 @@ import java.math.BigDecimal;
public
interface
TkioFlowHistoryRepository
extends
JpaRepository
<
TkioFlowHistory
,
Long
>
{
public
interface
TkioFlowHistoryRepository
extends
JpaRepository
<
TkioFlowHistory
,
Long
>
{
@Query
(
value
=
"select contract_code from tkio_flow_history where email = ?1 order by ds limit 1"
,
nativeQuery
=
true
)
@Query
(
value
=
"select contract_code from tkio_flow_history where email = ?1 order by ds limit 1"
,
nativeQuery
=
true
)
String
findLastRecodeContract
(
String
email
);
String
findLastRecodeContract
(
String
email
);
...
@@ -20,6 +18,6 @@ public interface TkioFlowHistoryRepository extends JpaRepository<TkioFlowHistory
...
@@ -20,6 +18,6 @@ public interface TkioFlowHistoryRepository extends JpaRepository<TkioFlowHistory
@Transactional
@Transactional
@Modifying
@Modifying
@Query
(
value
=
"delete from tkio_flow where email = ?1"
,
nativeQuery
=
true
)
@Query
(
value
=
"delete from tkio_flow
_history
where email = ?1"
,
nativeQuery
=
true
)
void
deleteByEmail
(
String
email
);
void
deleteByEmail
(
String
email
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment