|
|
@ -12,6 +12,8 @@ import com.hfkj.tts.HWYunSisService; |
|
|
|
import com.hfkj.unipush.UniPushService; |
|
|
|
import com.hfkj.unipush.UniPushService; |
|
|
|
import org.apache.commons.collections4.MapUtils; |
|
|
|
import org.apache.commons.collections4.MapUtils; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
|
|
|
|
import org.slf4j.Logger; |
|
|
|
|
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
import javax.annotation.Resource; |
|
|
@ -25,6 +27,8 @@ import java.util.Map; |
|
|
|
@Service("bsStoreCidService") |
|
|
|
@Service("bsStoreCidService") |
|
|
|
public class BsStoreCidServiceImpl implements BsStoreCidService { |
|
|
|
public class BsStoreCidServiceImpl implements BsStoreCidService { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static Logger log = LoggerFactory.getLogger(BsStoreCidService.class); |
|
|
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
@Resource |
|
|
|
private BsStoreCidMapper bsStoreCidMapper; |
|
|
|
private BsStoreCidMapper bsStoreCidMapper; |
|
|
|
|
|
|
|
|
|
|
@ -67,6 +71,8 @@ public class BsStoreCidServiceImpl implements BsStoreCidService { |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void storePush(JSONObject object) { |
|
|
|
public void storePush(JSONObject object) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
if (object == null || |
|
|
|
if (object == null || |
|
|
|
object.getBigDecimal("price") == null || |
|
|
|
object.getBigDecimal("price") == null || |
|
|
|
object.getLong("storeId") == null) { |
|
|
|
object.getLong("storeId") == null) { |
|
|
@ -90,6 +96,9 @@ public class BsStoreCidServiceImpl implements BsStoreCidService { |
|
|
|
object.put("cid", bsStoreCid.getCid()); |
|
|
|
object.put("cid", bsStoreCid.getCid()); |
|
|
|
object.put("body", auditPath); |
|
|
|
object.put("body", auditPath); |
|
|
|
UniPushService.pushToSingleByCid(object); |
|
|
|
UniPushService.pushToSingleByCid(object); |
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
|
|
|
log.info("请求超时:" + e); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|