/// <summary>
        /// 获取平台帐户信息
        /// </summary>
        /// <returns></returns>
        public static PlatAccount GetPlatAccount()
        {
            var model = _iBillingService.GetPlatAccount();

            Mapper.CreateMap <PlatAccountInfo, PlatAccount>();
            var platAccount = Mapper.Map <PlatAccountInfo, PlatAccount>(model);

            return(platAccount);
        }