feat: add payment card grouping and analysis
This commit is contained in:
@@ -49,6 +49,9 @@ class SubscriptionModel extends HiveObject {
|
||||
@HiveField(14)
|
||||
double? eventPrice; // 이벤트 기간 중 가격
|
||||
|
||||
@HiveField(15)
|
||||
String? paymentCardId; // 연결된 결제수단의 ID
|
||||
|
||||
SubscriptionModel({
|
||||
required this.id,
|
||||
required this.serviceName,
|
||||
@@ -65,6 +68,7 @@ class SubscriptionModel extends HiveObject {
|
||||
this.eventStartDate,
|
||||
this.eventEndDate,
|
||||
this.eventPrice,
|
||||
this.paymentCardId,
|
||||
});
|
||||
|
||||
// 주기적 결제 여부 확인
|
||||
|
||||
Reference in New Issue
Block a user