Commit 36067bc7 authored by hezhen's avatar hezhen

123

parent 3aa9d3cd
...@@ -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){
......
...@@ -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;
......
...@@ -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("成功");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment