public ActionResult OrderHousePayment()
        {
            decimal dec    = 66;
            var     entity = new OrderHousePayment();

            entity.MerchantID = 1;

            entity.OrderNumber       = "20181107163729899799";
            entity.ProjectID         = 24;
            entity.EquipmentSNNo     = "600047000103";
            entity.EmployeeID        = 7;
            entity.TransactionAmount = dec;
            entity.SerialNumber      = "	111863250000001641";
            entity.MemberID          = 2;
            entity.Status            = 1;
            entity.PaymentStatus     = 1;
            entity.PaymentType       = 2;

            iOrderHousePaymentService.Save(entity);
            iOrderHousePaymentService.Commit();


            return(View());
        }