Package org.luke.ct.model

Examples of org.luke.ct.model.PhoneCarPushNotification


    retJson = new JSONObject();
    retJson.put("messageID", pnm.getEncodedKey());
    for (CarPhoneRelation o : cpr_list) {
      if (o.getCarID().equals(carID)) {
        PhoneCarPushNotification pcpn = new PhoneCarPushNotification();
        pcpn.setAddTime(CTCommon.getNowTime());
        pcpn.setCarID(carID);
        pcpn.setPhoneID(phoneID);
        pcpn.setIsSend(false);
        pcpn.setMessageID(pnm.getEncodedKey());
        pcpn_service.add(pcpn);

        JSONArray carArray = retJson.getJSONArray("carArray");
        if (null == carArray)
          carArray = new JSONArray();
View Full Code Here

TOP

Related Classes of org.luke.ct.model.PhoneCarPushNotification

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.