Commit ee300577 authored by hezhen's avatar hezhen

123

parent 6374c4d9
......@@ -26,15 +26,14 @@ public class RentDepositJobHandler extends IJobHandler {
// MyWaterBiz myWaterBiz;
@Override
public ReturnT<String> execute(String var1) throws Exception {
public ReturnT<String> execute(String var1) {
try {
XxlJobLogger.log("-----定时器进入---walletHandler---");
// log.info("-----定时器进入---walletHandler---");
// myWaterBiz.updTodayAmount();
ReturnT returnT = new ReturnT(){{
setCode(100);
setMsg("成功");
}};
ReturnT returnT = new ReturnT();
returnT.setCode(100);
returnT.setMsg("成功");
return returnT;
} catch (Exception e) {
XxlJobLogger.log(e);
......
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