generated from pricelees/issue-pr-template
rename: PaymentDeatil 내 '공급가액' 필드명 수정(->suppliedAmount)
This commit is contained in:
parent
79527cb708
commit
4108dcd01a
@ -12,7 +12,7 @@ open class PaymentDetailEntity(
|
|||||||
id: Long,
|
id: Long,
|
||||||
|
|
||||||
open val paymentId: Long,
|
open val paymentId: Long,
|
||||||
open val netAmount: Int,
|
open val suppliedAmount: Int,
|
||||||
open val vat: Int,
|
open val vat: Int,
|
||||||
|
|
||||||
@Transient
|
@Transient
|
||||||
@ -24,7 +24,7 @@ open class PaymentDetailEntity(
|
|||||||
class PaymentCardDetailEntity(
|
class PaymentCardDetailEntity(
|
||||||
id: Long,
|
id: Long,
|
||||||
paymentId: Long,
|
paymentId: Long,
|
||||||
netAmount: Int,
|
suppliedAmount: Int,
|
||||||
vat: Int,
|
vat: Int,
|
||||||
|
|
||||||
@Enumerated(EnumType.STRING)
|
@Enumerated(EnumType.STRING)
|
||||||
@ -48,26 +48,27 @@ class PaymentCardDetailEntity(
|
|||||||
val easypayProviderCode: EasyPayCompanyCode?,
|
val easypayProviderCode: EasyPayCompanyCode?,
|
||||||
|
|
||||||
val easypayDiscountAmount: Int?
|
val easypayDiscountAmount: Int?
|
||||||
) : PaymentDetailEntity(id, paymentId, netAmount, vat)
|
) : PaymentDetailEntity(id, paymentId, suppliedAmount, vat)
|
||||||
|
|
||||||
@Entity
|
@Entity
|
||||||
@Table(name = "payment_bank_transfer_detail")
|
@Table(name = "payment_bank_transfer_detail")
|
||||||
class PaymentBankTransferDetailEntity(
|
class PaymentBankTransferDetailEntity(
|
||||||
id: Long,
|
id: Long,
|
||||||
paymentId: Long,
|
paymentId: Long,
|
||||||
netAmount: Int,
|
suppliedAmount: Int,
|
||||||
vat: Int,
|
vat: Int,
|
||||||
|
|
||||||
@Enumerated(EnumType.STRING)
|
@Enumerated(EnumType.STRING)
|
||||||
val bankCode: BankCode
|
val bankCode: BankCode,
|
||||||
) : PaymentDetailEntity(id, paymentId, netAmount, vat)
|
val settlementStatus: String,
|
||||||
|
) : PaymentDetailEntity(id, paymentId, suppliedAmount, vat)
|
||||||
|
|
||||||
@Entity
|
@Entity
|
||||||
@Table(name = "payment_easypay_prepaid_detail")
|
@Table(name = "payment_easypay_prepaid_detail")
|
||||||
class PaymentEasypayPrepaidDetailEntity(
|
class PaymentEasypayPrepaidDetailEntity(
|
||||||
id: Long,
|
id: Long,
|
||||||
paymentId: Long,
|
paymentId: Long,
|
||||||
netAmount: Int,
|
suppliedAmount: Int,
|
||||||
vat: Int,
|
vat: Int,
|
||||||
|
|
||||||
@Enumerated(EnumType.STRING)
|
@Enumerated(EnumType.STRING)
|
||||||
@ -75,4 +76,4 @@ class PaymentEasypayPrepaidDetailEntity(
|
|||||||
|
|
||||||
val amount: Int,
|
val amount: Int,
|
||||||
val discountAmount: Int
|
val discountAmount: Int
|
||||||
) : PaymentDetailEntity(id, paymentId, netAmount, vat)
|
) : PaymentDetailEntity(id, paymentId, suppliedAmount, vat)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user