public static JSONObject toJSONObject(ShoppingCategory model) { JSONObject jsonObj = new JSONObject(); JSONUtil.put(jsonObj, "categoryId", model.getCategoryId()); JSONUtil.put(jsonObj, "groupId", model.getGroupId()); JSONUtil.put(jsonObj, "companyId", model.getCompanyId()); JSONUtil.put(jsonObj, "userId", model.getUserId()); JSONUtil.put(jsonObj, "userName", model.getUserName()); JSONUtil.put(jsonObj, "createDate", model.getCreateDate()); JSONUtil.put(jsonObj, "modifiedDate", model.getModifiedDate()); JSONUtil.put(jsonObj, "parentCategoryId", model.getParentCategoryId()); JSONUtil.put(jsonObj, "name", model.getName()); JSONUtil.put(jsonObj, "description", model.getDescription()); return jsonObj; }
public static JSONObject toJSONObject(MBThread model) { JSONObject jsonObj = new JSONObject(); JSONUtil.put(jsonObj, "threadId", model.getThreadId()); JSONUtil.put(jsonObj, "categoryId", model.getCategoryId()); JSONUtil.put(jsonObj, "rootMessageId", model.getRootMessageId()); JSONUtil.put(jsonObj, "messageCount", model.getMessageCount()); JSONUtil.put(jsonObj, "viewCount", model.getViewCount()); JSONUtil.put(jsonObj, "lastPostByUserId", model.getLastPostByUserId()); JSONUtil.put(jsonObj, "lastPostDate", model.getLastPostDate()); JSONUtil.put(jsonObj, "priority", model.getPriority()); return jsonObj; }
public static JSONObject toJSONObject(MBMessage model) { JSONObject jsonObj = new JSONObject(); JSONUtil.put(jsonObj, "uuid", model.getUuid()); JSONUtil.put(jsonObj, "messageId", model.getMessageId()); JSONUtil.put(jsonObj, "companyId", model.getCompanyId()); JSONUtil.put(jsonObj, "userId", model.getUserId()); JSONUtil.put(jsonObj, "userName", model.getUserName()); JSONUtil.put(jsonObj, "createDate", model.getCreateDate()); JSONUtil.put(jsonObj, "modifiedDate", model.getModifiedDate()); JSONUtil.put(jsonObj, "categoryId", model.getCategoryId()); JSONUtil.put(jsonObj, "threadId", model.getThreadId()); JSONUtil.put(jsonObj, "parentMessageId", model.getParentMessageId()); JSONUtil.put(jsonObj, "subject", model.getSubject()); JSONUtil.put(jsonObj, "body", model.getBody()); JSONUtil.put(jsonObj, "attachments", model.getAttachments()); JSONUtil.put(jsonObj, "anonymous", model.getAnonymous()); return jsonObj; }