|
|
@@ -50,6 +50,7 @@ public class SplitWithdrawServiceImpl extends ServiceImpl<SplitWithdrawMapper, S
|
|
|
wrapper.eq(StringUtils.isNotEmpty(dto.getAcctStatus()),"acct_status", dto.getAcctStatus());
|
|
|
wrapper.ge(StringUtils.isNotEmpty(dto.getTransDateStart()), "trans_date",dto.getTransDateStart());
|
|
|
wrapper.le(StringUtils.isNotEmpty(dto.getTransDateEnd()), "trans_date",dto.getTransDateEnd());
|
|
|
+ wrapper.orderByDesc("trans_date");
|
|
|
Page<SplitWithdraw> result = this.page(page,wrapper);
|
|
|
CommonPage<SplitWithdraw> ret = MyBatisConvertUtils.convert2CommonPage(result);
|
|
|
ret.setRecords(result.getRecords());
|
|
|
@@ -81,6 +82,7 @@ public class SplitWithdrawServiceImpl extends ServiceImpl<SplitWithdrawMapper, S
|
|
|
public void successSend(SplitWithdraw splitWithdraw) {
|
|
|
try {
|
|
|
WxMaService service = this.getWechatService(splitWithdraw.getOperatorId());
|
|
|
+
|
|
|
WxMaSubscribeMessage message = new WxMaSubscribeMessage();
|
|
|
//接收者(用户)的 openid.
|
|
|
message.setToUser(splitWithdraw.getOpenid());
|