Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
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
youjj
cloud-platform
Commits
36067bc7
Commit
36067bc7
authored
Jul 29, 2019
by
hezhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
3aa9d3cd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
9 deletions
+6
-9
MyWalletDetailBiz.java
.../github/wxiaoqi/security/admin/biz/MyWalletDetailBiz.java
+1
-2
MyWaterBiz.java
...ava/com/github/wxiaoqi/security/admin/biz/MyWaterBiz.java
+1
-2
RentDepositJobHandler.java
...aoqi/security/admin/jobhandler/RentDepositJobHandler.java
+4
-5
No files found.
ace-modules/ace-admin/src/main/java/com/github/wxiaoqi/security/admin/biz/MyWalletDetailBiz.java
View file @
36067bc7
...
@@ -35,9 +35,8 @@ import java.util.stream.Collectors;
...
@@ -35,9 +35,8 @@ import java.util.stream.Collectors;
@Transactional
@Transactional
@Service
@Service
@Data
@Data
public
class
MyWalletDetailBiz
extends
BaseBiz
<
MyWalletDetailMapper
,
MyWalletDetail
>
implements
Serializable
{
public
class
MyWalletDetailBiz
extends
BaseBiz
<
MyWalletDetailMapper
,
MyWalletDetail
>
{
private
static
final
long
serialVersionUID
=
1L
;
public
PageDataVO
<
WalletDetailPageVo
>
findWalletDetailPage
(
Integer
userId
,
Integer
pageNo
,
Integer
pageSize
){
public
PageDataVO
<
WalletDetailPageVo
>
findWalletDetailPage
(
Integer
userId
,
Integer
pageNo
,
Integer
pageSize
){
...
...
ace-modules/ace-admin/src/main/java/com/github/wxiaoqi/security/admin/biz/MyWaterBiz.java
View file @
36067bc7
...
@@ -34,9 +34,8 @@ import java.util.List;
...
@@ -34,9 +34,8 @@ import java.util.List;
*/
*/
@Service
@Service
@Slf4j
@Slf4j
public
class
MyWaterBiz
extends
BaseBiz
<
MyWalletMapper
,
MyWallet
>
implements
Serializable
{
public
class
MyWaterBiz
extends
BaseBiz
<
MyWalletMapper
,
MyWallet
>{
private
static
final
long
serialVersionUID
=
1L
;
@Autowired
@Autowired
MyWalletDetailBiz
walletDetailBiz
;
MyWalletDetailBiz
walletDetailBiz
;
...
...
ace-modules/ace-admin/src/main/java/com/github/wxiaoqi/security/admin/jobhandler/RentDepositJobHandler.java
View file @
36067bc7
...
@@ -20,17 +20,16 @@ import java.io.Serializable;
...
@@ -20,17 +20,16 @@ import java.io.Serializable;
@JobHandler
(
value
=
"walletHandler"
)
@JobHandler
(
value
=
"walletHandler"
)
@Component
@Component
@Slf4j
@Slf4j
public
class
RentDepositJobHandler
extends
IJobHandler
implements
Serializable
{
public
class
RentDepositJobHandler
extends
IJobHandler
{
private
static
final
long
serialVersionUID
=
1L
;
// @Autowired
@Autowired
// MyWaterBiz myWaterBiz;
MyWaterBiz
myWaterBiz
;
@Override
@Override
public
ReturnT
<
String
>
execute
(
String
var1
)
throws
Exception
{
public
ReturnT
<
String
>
execute
(
String
var1
)
throws
Exception
{
try
{
try
{
log
.
info
(
"-----定时器进入---walletHandler---"
);
log
.
info
(
"-----定时器进入---walletHandler---"
);
myWaterBiz
.
updTodayAmount
();
//
myWaterBiz.updTodayAmount();
ReturnT
returnT
=
new
ReturnT
(){{
ReturnT
returnT
=
new
ReturnT
(){{
setCode
(
100
);
setCode
(
100
);
setMsg
(
"成功"
);
setMsg
(
"成功"
);
...
...
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