// 1.6 CPU卡月票充值初始化
        public string CpuMonthInitHandler()
        {
            string temp = "";
            int    flag;

            byte[] resultByte = new byte[1000];
            flag = Recharge.CpuMonthInit(resultByte);
            temp = Convertor.Ascii2Str(resultByte);
            return(flag + ";" + temp);
        }