6
0
Fork 0

增加输出可选

master
nishengli 1 year ago
parent 29ee3f7df2
commit 00975298cc
  1. 2
      src/main/java/com/tsl3060/open/extend/core/constant/BuildInfo.java
  2. 75
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonOrderNotify.java

@ -1,5 +1,5 @@
package com.tsl3060.open.extend.core.constant; package com.tsl3060.open.extend.core.constant;
public final class BuildInfo { public final class BuildInfo {
/** SDK Version */ /** SDK Version */
public static String VERSION="0.3.12"; public static String VERSION="0.3.13";
} }

@ -4,7 +4,6 @@ import com.alibaba.fastjson2.annotation.JSONField;
public class CarbonOrderNotify { public class CarbonOrderNotify {
private final double scale = 100.0;
/** /**
* 用户OpenID * 用户OpenID
*/ */
@ -21,16 +20,21 @@ public class CarbonOrderNotify {
private String carbonNo; private String carbonNo;
/** /**
* 用户低碳积分 单位(0.01g) * 用户低碳积分
*/ */
@JSONField(name = "carbon") @JSONField(name = "carbon")
private int carbon; private int carbon;
@JSONField(name = "carbon_value")
private String carbonValue;
/** /**
* 本次订单新增积分 单位(0.01g) * 本次订单新增积分
*/ */
@JSONField(name = "amount") @JSONField(name = "amount")
private int amount; private int amount;
@JSONField(name = "amount_value")
private String amountValue;
/** /**
* 订单时间 * 订单时间
*/ */
@ -71,40 +75,49 @@ public class CarbonOrderNotify {
} }
/** /**
* 获取用户的低碳值单位(0.01g) * 获取用户的低碳值
* <p>
* 该函数会丢失精度使用 getCarbonValue 代理
* *
* @return * @return
*/ */
@Deprecated
public int getCarbon() { public int getCarbon() {
return carbon; return carbon;
} }
/** /**
* 获取用户的低碳值单位(g) * 设置用户的低碳值
* * <p>
* @return * 该函数会丢失精度使用 setCarbonValue 代替
*/
public double getCarbonValue() {
return carbon / scale;
}
/**
* 设置用户的低碳值 单位 (0.01g)
* *
* @param carbon * @param carbon
*/ */
@Deprecated
public void setCarbon(int carbon) { public void setCarbon(int carbon) {
this.carbon = carbon; this.carbon = carbon;
} }
/**
* 获取本单低碳值
* <p>
* 该函数会丢失精度使用 getAmountValue代替
*
* @return
*/
@Deprecated
public int getAmount() { public int getAmount() {
return amount; return amount;
} }
public double getAmountValue() { /**
return amount / scale; * 设置本单低碳值
} * <p>
* 该函数会丢失精度使用 setAmountValue代替
*
* @return
*/
@Deprecated
public void setAmount(int amount) { public void setAmount(int amount) {
this.amount = amount; this.amount = amount;
} }
@ -132,4 +145,30 @@ public class CarbonOrderNotify {
public void setType(String type) { public void setType(String type) {
this.type = type; this.type = type;
} }
public void setCarbonValue(String carbonValue) {
this.carbonValue = carbonValue;
}
public void setAmountValue(String amountValue) {
this.amountValue = amountValue;
}
/**
* 获取用户低碳值余额格式: 0.## ,单位 g
*
* @return
*/
public String getCarbonValue() {
return carbonValue;
}
/**
* 获取本订单低碳值格式 0.##单位g
*
* @return
*/
public String getAmountValue() {
return amountValue;
}
} }

Loading…
Cancel
Save