6
0
Fork 0

Merge branch 'release/0.3.12'

master 0.3.12
nishengli 1 year ago
commit 83e1c9851c
  1. 15
      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

@ -6,7 +6,7 @@
<groupId>com.tsl3060.open.extend</groupId>
<artifactId>tsl-open-sdk-java-wanshun</artifactId>
<version>0.3.11</version>
<version>0.3.12</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
@ -113,4 +113,17 @@
<!-- </plugin>-->
</plugins>
</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>

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

@ -92,11 +92,22 @@ public class CarbonOrderPayload extends RequestPayload implements IApiRequest {
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;
}
public void setMileage(double mileage) {
/**
* 里程 (单位m)
*
* @param mileage
*/
public void setMileage(int mileage) {
this.setMileage(String.valueOf(mileage));
}
@ -104,14 +115,21 @@ public class CarbonOrderPayload extends RequestPayload implements IApiRequest {
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;
}
/**
* 订单金额 (单位)
*
* @param orderPay
*/
public void setOrderPay(double orderPay) {
public void setOrderPay(int orderPay) {
this.setOrderPay(String.valueOf(orderPay));
}

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

Loading…
Cancel
Save