Merge pull request '크리에이터 관리자 - @JsonProperty 추가' (#83) from test into main
Reviewed-on: #83
This commit is contained in:
commit
a11c8465d5
|
@ -1,26 +1,19 @@
|
||||||
package kr.co.vividnext.sodalive.admin.calculate
|
package kr.co.vividnext.sodalive.admin.calculate
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
|
|
||||||
data class GetCalculateLiveResponse(
|
data class GetCalculateLiveResponse(
|
||||||
val email: String,
|
@JsonProperty("email") val email: String,
|
||||||
val nickname: String,
|
@JsonProperty("nickname") val nickname: String,
|
||||||
val date: String,
|
@JsonProperty("date") val date: String,
|
||||||
val title: String,
|
@JsonProperty("title") val title: String,
|
||||||
// 유료방 입장 금액
|
@JsonProperty("entranceFee") val entranceFee: Int,
|
||||||
val entranceFee: Int,
|
@JsonProperty("canUsageStr") val canUsageStr: String,
|
||||||
// 캔 사용 구분
|
@JsonProperty("numberOfPeople") val numberOfPeople: Int,
|
||||||
val canUsageStr: String,
|
@JsonProperty("totalAmount") val totalAmount: Int,
|
||||||
// 인원
|
@JsonProperty("totalKrw") val totalKrw: Int,
|
||||||
val numberOfPeople: Int,
|
@JsonProperty("paymentFee") val paymentFee: Int,
|
||||||
// 합계
|
@JsonProperty("settlementAmount") val settlementAmount: Int,
|
||||||
val totalAmount: Int,
|
@JsonProperty("tax") val tax: Int,
|
||||||
// 원화
|
@JsonProperty("depositAmount") val depositAmount: Int
|
||||||
val totalKrw: Int,
|
|
||||||
// 결제수수료
|
|
||||||
val paymentFee: Int,
|
|
||||||
// 정산금액
|
|
||||||
val settlementAmount: Int,
|
|
||||||
// 원천세(세금 3.3%)
|
|
||||||
val tax: Int,
|
|
||||||
// 입금액
|
|
||||||
val depositAmount: Int
|
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue