재화 로그 액션, 재화종류, 증감유형 조건 추가
재화 로그 잔량 필드 추가 재화 지표 export 추가
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user