Commit 36067bc7 authored by hezhen's avatar hezhen

123

parent 3aa9d3cd
......@@ -35,9 +35,8 @@ import java.util.stream.Collectors;
@Transactional
@Service
@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){
......
......@@ -34,9 +34,8 @@ import java.util.List;
*/
@Service
@Slf4j
public class MyWaterBiz extends BaseBiz<MyWalletMapper, MyWallet>implements Serializable {
public class MyWaterBiz extends BaseBiz<MyWalletMapper, MyWallet>{
private static final long serialVersionUID = 1L;
@Autowired
MyWalletDetailBiz walletDetailBiz;
......
......@@ -20,17 +20,16 @@ import java.io.Serializable;
@JobHandler(value = "walletHandler")
@Component
@Slf4j
public class RentDepositJobHandler extends IJobHandler implements Serializable {
public class RentDepositJobHandler extends IJobHandler {
private static final long serialVersionUID = 1L;
@Autowired
MyWaterBiz myWaterBiz;
// @Autowired
// MyWaterBiz myWaterBiz;
@Override
public ReturnT<String> execute(String var1) throws Exception {
try {
log.info("-----定时器进入---walletHandler---");
myWaterBiz.updTodayAmount();
// myWaterBiz.updTodayAmount();
ReturnT returnT = new ReturnT(){{
setCode(100);
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