/// <summary>
        /// 提现信息列表
        /// </summary>
        /// <returns></returns>
        public ActionResult ExportShopWithDraw(DateTime?applyStartTime, DateTime?applyEndTime, DateTime?auditedStartTime, DateTime?auditedEndTime, long?staus)
        {
            var query = new CommonModel.WithdrawQuery()
            {
                ApplyStartTime   = applyStartTime,
                ApplyEndTime     = applyEndTime,
                AuditedStartTime = auditedStartTime,
                AuditedEndTime   = auditedEndTime,
                Status           = (Himall.CommonModel.WithdrawStaus?)staus,
                ShopId           = CurrentSellerManager.ShopId,
            };
            var models = BillingApplication.GetShopWithDrawNoPage(query);

            return(ExcelView("提现明细", models));
        }