Compare commits

..

No commits in common. "6409b69d6ca59ca88b055eca7b30e35224db5ad3" and "c5164c76fc9137cdb72cc33428891a545dc78002" have entirely different histories.

1 changed files with 26 additions and 15 deletions

View File

@ -1,19 +1,30 @@
package kr.co.vividnext.sodalive.admin.calculate
import com.fasterxml.jackson.annotation.JsonProperty
data class GetCalculateContentResponse(
@JsonProperty("nickname") val nickname: String,
@JsonProperty("title") val title: String,
@JsonProperty("registrationDate") val registrationDate: String,
@JsonProperty("saleDate") val saleDate: String,
@JsonProperty("orderType") val orderType: String,
@JsonProperty("orderPrice") val orderPrice: Int,
@JsonProperty("numberOfPeople") val numberOfPeople: Int,
@JsonProperty("totalCan") val totalCan: Int,
@JsonProperty("totalKrw") val totalKrw: Int,
@JsonProperty("paymentFee") val paymentFee: Int,
@JsonProperty("settlementAmount") val settlementAmount: Int,
@JsonProperty("tax") val tax: Int,
@JsonProperty("depositAmount") val depositAmount: Int
// 등록 크리에이터 닉네임
val nickname: String,
// 콘텐츠 제목
val title: String,
// 콘텐츠 등록 날짜
val registrationDate: String,
// 콘텐츠 판매 날짜
val saleDate: String,
// 대여/소장 구분
val orderType: String,
// 판매 금액(캔)
val orderPrice: Int,
// 인원
val numberOfPeople: Int,
// 합계
val totalCan: Int,
// 원화
val totalKrw: Int,
// 수수료
val paymentFee: Int,
// 정산금액
val settlementAmount: Int,
// 원천세(세금 3.3%)
val tax: Int,
// 입금액
val depositAmount: Int
)