parent
3b97364f24
commit
ba2530ba55
|
@ -30,7 +30,7 @@ class CanCouponService(
|
||||||
GetCouponListItemResponse(
|
GetCouponListItemResponse(
|
||||||
id = it.id!!,
|
id = it.id!!,
|
||||||
couponName = it.couponName,
|
couponName = it.couponName,
|
||||||
can = "${it.can}캔",
|
can = it.can,
|
||||||
couponCount = it.couponCount,
|
couponCount = it.couponCount,
|
||||||
useCouponCount = useCouponCount,
|
useCouponCount = useCouponCount,
|
||||||
validity = it.validity.format(DateTimeFormatter.ofPattern("yyyy-MM-dd")),
|
validity = it.validity.format(DateTimeFormatter.ofPattern("yyyy-MM-dd")),
|
||||||
|
|
|
@ -8,7 +8,7 @@ data class GetCouponListResponse(
|
||||||
data class GetCouponListItemResponse(
|
data class GetCouponListItemResponse(
|
||||||
val id: Long,
|
val id: Long,
|
||||||
val couponName: String,
|
val couponName: String,
|
||||||
val can: String,
|
val can: Int,
|
||||||
val couponCount: Int,
|
val couponCount: Int,
|
||||||
val useCouponCount: Int,
|
val useCouponCount: Int,
|
||||||
val validity: String,
|
val validity: String,
|
||||||
|
|
Loading…
Reference in New Issue