// 1.14 M1异常处理
        public string M1Exception(DllM1ExceptionIn dllM1ExceptionIn)
        {
            string temp = "";
            int    flag;

            byte[] resultByte = new byte[1000];
            temp = JsonConvert.SerializeObject(dllM1ExceptionIn);
            flag = Recharge.M1Exception(temp, resultByte);
            temp = Convertor.Ascii2Str(resultByte);
            return(flag + ";" + temp);
        }