public JSONObject performVerifyPassword(String account, String password) { JSONObject jsonObj = new JSONObject(); jsonObj = Helper.wrapUp(mQuery.verifyPassword(account, password)); return jsonObj; }
/** * 传入账户号,取得账户管理所需要得账户信息 * * @author 王亭 * @param account * @return 账户信息 */ public JSONObject performGetAccInfo(String account) { JSONObject jsonObj = new JSONObject(); jsonObj = Helper.wrapUp(mQuery.getAccInfo(account)); return jsonObj; }
public JSONObject performGetOrderInfo(String acc) { // TODO Auto-generated method stub return Helper.wrapUp(mQuery.getOrderInfo(acc)); }
// ----------------------------查询 public JSONObject performAcctIsActive(String actNo) { // TODO Auto-generated method stub return Helper.wrapUp(mQuery.acctIsActive(actNo)); }