diff --git a/src/vo/order/newebpayOrderVo.ts b/src/vo/order/newebpayOrderVo.ts index 1ad388f..1c7abfc 100644 --- a/src/vo/order/newebpayOrderVo.ts +++ b/src/vo/order/newebpayOrderVo.ts @@ -1,17 +1,17 @@ export class NewebpayOrderVo { private readonly orderId: string; - private readonly merchantID: string; - private readonly tradeSha: string; - private readonly tradeInfo: string; - private readonly version: string; + private readonly MerchantID: string; + private readonly TradeSha: string; + private readonly TradeInfo: string; + private readonly Version: string; private readonly paymentGateway: string; constructor(orderId: string, tradeSha: string, tradeInfo: string) { this.orderId = orderId; - this.merchantID = process.env.NEWEBPAY_MERCHANT_ID; - this.tradeSha = tradeSha; - this.tradeInfo = tradeInfo; - this.version = process.env.NEWEBPAY_VERSION; + this.MerchantID = process.env.NEWEBPAY_MERCHANT_ID; + this.TradeSha = tradeSha; + this.TradeInfo = tradeInfo; + this.Version = process.env.NEWEBPAY_VERSION; this.paymentGateway = process.env.NEWEBPAY_PAY_GATEWAY; } }