@Override public String transform4Preview(Integer wxUserPkey, Integer tempPkey) throws JSONException { JSONObject json = new JSONObject(); json.put("touser", Bean.load(WxUser.class, wxUserPkey).getOpenId()); json.put( "text", new JSONObject().put("content", Bean.load(WmText.class, tempPkey).getContent())); json.put("msgtype", "text"); return json.toString(); }
@Override public String transform4Mass(boolean isToAll, Integer wxGroupPkey, Integer tempPkey) throws JSONException { JSONObject json = new JSONObject(); JSONObject filter = new JSONObject(); filter.put("is_to_all", isToAll); if (!isToAll) { filter.put("group_id", Bean.load(WxUserGroup.class, wxGroupPkey).getWxid()); } json.put("filter", filter); json.put( "text", new JSONObject().put("content", Bean.load(WmText.class, tempPkey).getContent())); json.put("msgtype", "text"); return json.toString(); }
public void stExp(Bean exp) { setExp(exp.gtLongPkey()); }