Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cloud-fb
Overview
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
王衍超
cloud-fb
Commits
d233287f
Commit
d233287f
authored
Jul 08, 2021
by
焦凯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改signDateStart和signDateEnd为signDate,signDate为真实字段
parent
0ab31ea8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ContractDao.java
...ava/com/xyst/dinas/contract/internal/dao/ContractDao.java
+2
-2
No files found.
backend/xyst.dinas.contract/src/main/java/com/xyst/dinas/contract/internal/dao/ContractDao.java
View file @
d233287f
...
...
@@ -216,8 +216,8 @@ public class ContractDao {
if
(
contractState
!=
null
)
hql
.
append
(
"and contractState =:contractState "
);
if
(
projectId
!=
null
)
hql
.
append
(
"and project.id =:projectId "
);
if
(
purchaseSandUnitId
!=
null
)
hql
.
append
(
"and purchaseSandUnit.id =:purchaseSandUnitId "
);
if
(
signDateStart
!=
null
)
hql
.
append
(
"and signDate
Start
>=:signDateStart "
);
if
(
signDateEnd
!=
null
)
hql
.
append
(
"and signDate
End
<=:signDateEnd "
);
if
(
signDateStart
!=
null
)
hql
.
append
(
"and signDate >=:signDateStart "
);
if
(
signDateEnd
!=
null
)
hql
.
append
(
"and signDate <=:signDateEnd "
);
if
(
approveState
!=
null
)
hql
.
append
(
"and approveState <=:approveState "
);
return
template
.
execute
(
session
->
{
...
...
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