...
|
...
|
@@ -29,16 +29,9 @@ public class UnionSettleUpdateConsumer implements YhConsumer { |
|
|
if (null == o) {
|
|
|
return;
|
|
|
}
|
|
|
List<Object> list = JsonUtil.jsonToObject(o.toString(), List.class);
|
|
|
list.forEach(l->{
|
|
|
try {
|
|
|
ShareSettlementBo bo = JsonUtil.jsonToObject(l.toString(), ShareSettlementBo.class);
|
|
|
//TODO 提现结算单状态变更
|
|
|
unionShareService.updateSettlementStatus(bo);
|
|
|
} catch (Exception e) {
|
|
|
logger.warn("UnionSettleUpdateConsumer,handleMessage fail! obj is {}, e {}",l,e.getMessage());
|
|
|
}
|
|
|
});
|
|
|
ShareSettlementBo bo = JsonUtil.jsonToObject(o.toString(), ShareSettlementBo.class);
|
|
|
//TODO 提现结算单状态变更
|
|
|
unionShareService.updateSettlementStatus(bo);
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
logger.warn("UnionSettleUpdateConsumer,handleMessage fail! obj is {}, e {}",o,e.getMessage());
|
...
|
...
|
|