Compare commits

..

No commits in common. "a11c8465d552368c0e02b3af8d2d913a75de6974" and "366304a9b7ef1244398350a1a3540d7bfc0e1d84" have entirely different histories.

1 changed files with 22 additions and 15 deletions

View File

@ -1,19 +1,26 @@
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(
@JsonProperty("email") val email: String, val email: String,
@JsonProperty("nickname") val nickname: String, val nickname: String,
@JsonProperty("date") val date: String, val date: String,
@JsonProperty("title") val title: String, val title: String,
@JsonProperty("entranceFee") val entranceFee: Int, // 유료방 입장 금액
@JsonProperty("canUsageStr") val canUsageStr: String, val entranceFee: Int,
@JsonProperty("numberOfPeople") val numberOfPeople: Int, // 캔 사용 구분
@JsonProperty("totalAmount") val totalAmount: Int, val canUsageStr: String,
@JsonProperty("totalKrw") val totalKrw: Int, // 인원
@JsonProperty("paymentFee") val paymentFee: Int, val numberOfPeople: Int,
@JsonProperty("settlementAmount") val settlementAmount: Int, // 합계
@JsonProperty("tax") val tax: Int, val totalAmount: Int,
@JsonProperty("depositAmount") val depositAmount: Int // 원화
val totalKrw: Int,
// 결제수수료
val paymentFee: Int,
// 정산금액
val settlementAmount: Int,
// 원천세(세금 3.3%)
val tax: Int,
// 입금액
val depositAmount: Int
) )