| | |
| | | // 更新数据
|
| | | updateByPrimaryKey(current);
|
| | | }
|
| | |
|
| | | }
|
| | |
|
| | | @Override
|
| | |
| | | }
|
| | |
|
| | |
|
| | | // TODO 推送跳转
|
| | | |
| | | |
| | | String uids = pushCoupon.getUids();
|
| | | if (uids == null || uids.trim().length() == 0) {
|
| | | // 全推
|
| | | //pushService.pushZNX(null, title, content);
|
| | | pushService.pushWelfareCenter(null, title, content);
|
| | |
|
| | | } else {
|
| | | // 指定用户推送
|
| | |
| | | for (int i = 0; i < uidArray.length; i++) {
|
| | | String str_uid = uidArray[i];
|
| | | if (str_uid != null && str_uid.trim().length() > 0) {
|
| | | //pushService.pushZNX(Long.parseLong(str_uid), title, content);
|
| | | pushService.pushWelfareCenter(Long.parseLong(str_uid), title, content);
|
| | | }
|
| | | }
|
| | | }
|