재화 로그 액션, 재화종류, 증감유형 조건 추가

재화 로그 잔량 필드 추가
재화 지표 export 추가
This commit is contained in:
2025-06-16 15:40:04 +09:00
parent 2f9ea432f4
commit b1fbd556e2
9 changed files with 217 additions and 18 deletions

View File

@@ -1,12 +1,9 @@
package com.caliverse.admin.Indicators.entity;
import com.caliverse.admin.logs.Indicatordomain.CurrencyMongoLog;
import lombok.Getter;
import lombok.Setter;
import org.springframework.data.mongodb.core.mapping.Document;
import java.util.List;
@Getter
@Setter
@Document(collection = "currency")
@@ -22,6 +19,7 @@ public class CurrencyDetailLogInfo extends LogInfoBase{
private String currencyType;
private String amountDeltaType;
private Double deltaAmount;
private Double currencyAmount;
public CurrencyDetailLogInfo(String id,
String logDay,
@@ -33,7 +31,8 @@ public class CurrencyDetailLogInfo extends LogInfoBase{
String logTime,
String currencyType,
String amountDeltaType,
Double deltaAmount
Double deltaAmount,
Double currencyAmount
) {
super(StatisticsType.CURRENCY);
@@ -48,6 +47,7 @@ public class CurrencyDetailLogInfo extends LogInfoBase{
this.currencyType = currencyType;
this.amountDeltaType = amountDeltaType;
this.deltaAmount = deltaAmount;
this.currencyAmount = currencyAmount;
}
}