// 1.7 CPU卡月票充值
        public string CpuMonthRecharge(string rechargeCmdString)
        {
            string temp = "";
            int    flag;

            byte[] resultByte = new byte[1000];
            flag = Recharge.CpuMonthRecharge(rechargeCmdString, resultByte);
            temp = Convertor.Ascii2Str(resultByte);

            return(flag + "" + temp);
        }