Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_backend
Commits
6230e1f9
Commit
6230e1f9
authored
Sep 13, 2023
by
shiyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
成交价格
parent
89921af5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
ch-dao/src/main/java/com/wwdz/ch/db/dto/request/CoinRequestDto.java
.../main/java/com/wwdz/ch/db/dto/request/CoinRequestDto.java
+5
-0
ch-dao/src/main/java/com/wwdz/ch/db/impl/ItemDaoImpl.java
ch-dao/src/main/java/com/wwdz/ch/db/impl/ItemDaoImpl.java
+1
-0
ch-wx-api/src/main/java/com/wwdz/ch/wx/impl/QueryPriceServiceImpl.java
.../main/java/com/wwdz/ch/wx/impl/QueryPriceServiceImpl.java
+1
-0
No files found.
ch-dao/src/main/java/com/wwdz/ch/db/dto/request/CoinRequestDto.java
View file @
6230e1f9
...
@@ -23,6 +23,11 @@ public class CoinRequestDto extends BaseRequestDto implements Entity {
...
@@ -23,6 +23,11 @@ public class CoinRequestDto extends BaseRequestDto implements Entity {
*/
*/
private
String
diameter
;
private
String
diameter
;
/**
* 逻辑删除
*/
private
Boolean
isDeleted
;
/**
/**
* 厚度
* 厚度
*/
*/
...
...
ch-dao/src/main/java/com/wwdz/ch/db/impl/ItemDaoImpl.java
View file @
6230e1f9
...
@@ -82,6 +82,7 @@ public class ItemDaoImpl implements ItemDao {
...
@@ -82,6 +82,7 @@ public class ItemDaoImpl implements ItemDao {
}
else
{
}
else
{
example
.
setOrderByClause
(
"create_time asc"
);
example
.
setOrderByClause
(
"create_time asc"
);
}
}
JdbcHelper
.
ifPresent
(
coinRequestDto
.
getIsDeleted
(),
criteria:
:
andIsDeletedEqualTo
);
JdbcHelper
.
ifPresent
(
coinRequestDto
.
getCid
(),
criteria:
:
andCidEqualTo
);
JdbcHelper
.
ifPresent
(
coinRequestDto
.
getCid
(),
criteria:
:
andCidEqualTo
);
JdbcHelper
.
ifPresent
(
coinRequestDto
.
getStartUpdateTime
(),
criteria:
:
andUpdateTimeGreaterThan
);
JdbcHelper
.
ifPresent
(
coinRequestDto
.
getStartUpdateTime
(),
criteria:
:
andUpdateTimeGreaterThan
);
PageHelper
.
startPage
(
coinRequestDto
.
getPage
(),
coinRequestDto
.
getLimit
());
PageHelper
.
startPage
(
coinRequestDto
.
getPage
(),
coinRequestDto
.
getLimit
());
...
...
ch-wx-api/src/main/java/com/wwdz/ch/wx/impl/QueryPriceServiceImpl.java
View file @
6230e1f9
...
@@ -108,6 +108,7 @@ public class QueryPriceServiceImpl implements QueryPriceService {
...
@@ -108,6 +108,7 @@ public class QueryPriceServiceImpl implements QueryPriceService {
@Override
@Override
public
Result
findBidRecord
(
CoinRequestDto
dto
)
{
public
Result
findBidRecord
(
CoinRequestDto
dto
)
{
try
{
try
{
dto
.
setIsDeleted
(
false
);
List
<
Item
>
itemList
=
itemDao
.
findListByPage
(
dto
);
List
<
Item
>
itemList
=
itemDao
.
findListByPage
(
dto
);
PageInfo
pageInfo
=
PageInfo
.
of
(
itemList
);
PageInfo
pageInfo
=
PageInfo
.
of
(
itemList
);
List
<
Map
<
String
,
Object
>>
mapList
=
new
ArrayList
<>();
List
<
Map
<
String
,
Object
>>
mapList
=
new
ArrayList
<>();
...
...
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