6
0
Fork 0

更新精度

master
nishengli 1 year ago
parent 19a9419d0b
commit 9216271bb9
  1. 13
      pom.xml
  2. 12
      src/main/java/com/tsl3060/open/extend/core/notify/CarbonOrderNotify.java
  3. 26
      src/main/java/com/tsl3060/open/extend/core/payload/CarbonOrderPayload.java
  4. 12
      src/main/java/com/tsl3060/open/extend/core/response/CarbonOrderResponse.java

@ -113,4 +113,17 @@
<!-- </plugin>--> <!-- </plugin>-->
</plugins> </plugins>
</build> </build>
<distributionManagement>
<repository>
<id>tansilu-release</id>
<name>TanSiLu-release</name>
<url>http://192.168.10.211:8081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>tansilu-snapshots</id>
<name>TanSiLu-snapshots</name>
<url>http://192.168.10.211:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project> </project>

@ -22,13 +22,13 @@ public class CarbonOrderNotify {
* 用户低碳积分 * 用户低碳积分
*/ */
@JSONField(name = "carbon") @JSONField(name = "carbon")
private String carbon; private int carbon;
/** /**
* 本次订单新增积分 * 本次订单新增积分
*/ */
@JSONField(name = "amount") @JSONField(name = "amount")
private String amount; private int amount;
/** /**
* 订单时间 * 订单时间
*/ */
@ -69,19 +69,19 @@ public class CarbonOrderNotify {
} }
public String getCarbon() { public int getCarbon() {
return carbon; return carbon;
} }
public void setCarbon(String carbon) { public void setCarbon(int carbon) {
this.carbon = carbon; this.carbon = carbon;
} }
public String getAmount() { public int getAmount() {
return amount; return amount;
} }
public void setAmount(String amount) { public void setAmount(int amount) {
this.amount = amount; this.amount = amount;
} }

@ -92,11 +92,22 @@ public class CarbonOrderPayload extends RequestPayload implements IApiRequest {
return mileage; return mileage;
} }
public void setMileage(String mileage) {
public void setMileage(double mileage) {
double v = mileage * 1000;
this.setMileage(String.valueOf((int) v));
}
private void setMileage(String mileage) {
this.mileage = mileage; this.mileage = mileage;
} }
public void setMileage(double mileage) { /**
* 里程 (单位m)
*
* @param mileage
*/
public void setMileage(int mileage) {
this.setMileage(String.valueOf(mileage)); this.setMileage(String.valueOf(mileage));
} }
@ -104,14 +115,21 @@ public class CarbonOrderPayload extends RequestPayload implements IApiRequest {
return orderPay; return orderPay;
} }
public void setOrderPay(String orderPay) { public void setOrderPay(double orderPay) {
double v = orderPay * 100;
this.setOrderPay(String.valueOf((int) v));
}
private void setOrderPay(String orderPay) {
this.orderPay = orderPay; this.orderPay = orderPay;
} }
/** /**
* 订单金额 (单位)
*
* @param orderPay * @param orderPay
*/ */
public void setOrderPay(double orderPay) { public void setOrderPay(int orderPay) {
this.setOrderPay(String.valueOf(orderPay)); this.setOrderPay(String.valueOf(orderPay));
} }

@ -4,8 +4,8 @@ import com.alibaba.fastjson2.annotation.JSONField;
public class CarbonOrderResponse { public class CarbonOrderResponse {
private String openid; private String openid;
private String carbon; private int carbon;
private double total; private int total;
private String record; private String record;
@JSONField(name = "record_time") @JSONField(name = "record_time")
private String recordTime; private String recordTime;
@ -18,19 +18,19 @@ public class CarbonOrderResponse {
this.openid = openid; this.openid = openid;
} }
public String getCarbon() { public int getCarbon() {
return carbon; return carbon;
} }
public void setCarbon(String carbon) { public void setCarbon(int carbon) {
this.carbon = carbon; this.carbon = carbon;
} }
public double getTotal() { public int getTotal() {
return total; return total;
} }
public void setTotal(double total) { public void setTotal(int total) {
this.total = total; this.total = total;
} }

Loading…
Cancel
Save