Przeglądaj źródła

[交易金额核销金额记录][修改]查询列表的修改

release_toaliyun_real
jinguo24@163.com 7 lat temu
rodzic
commit
ac4644662f
1 zmienionych plików z 55 dodań i 3 usunięć
  1. +55
    -3
      mallinkService/src/main/java/com/simple/domain/vo/AmountRecordVo.java

+ 55
- 3
mallinkService/src/main/java/com/simple/domain/vo/AmountRecordVo.java Wyświetl plik

@@ -1,6 +1,7 @@
package com.simple.domain.vo;
import java.io.Serializable;
import java.text.DecimalFormat;
/**
* 交易记录核销记录Vo
* @author jinguo
@@ -15,10 +16,61 @@ public class AmountRecordVo implements Serializable{
*
*/
private static final long serialVersionUID = 4494858079134918638L;
List<WxDateAmountRecord> orderAmountList;
//交易金额记录
private List<WxDateAmountRecord> orderAmountList;
//核销金额记录
private List<WxDateAmountRecord> verifyAmountList;
private Integer orderAmount;
private String orderAmountStr;
List<WxDateAmountRecord> verifyAmountList;
private Integer verifyAmount;
private String verifyAmountStr;
public String getOrderAmountStr() {
if(orderAmount!=null) {
DecimalFormat df=new DecimalFormat("0.00");
orderAmountStr = df.format((float)orderAmount/100);
}
return orderAmountStr;
}
public String getVerifyAmountStr() {
if(verifyAmount!=null) {
DecimalFormat df=new DecimalFormat("0.00");
verifyAmountStr = df.format((float)verifyAmount/100);
}
return verifyAmountStr;
}
public Integer getOrderAmount() {
return orderAmount;
}
public void setOrderAmount(Integer orderAmount) {
this.orderAmount = orderAmount;
}
public Integer getVerifyAmount() {
return verifyAmount;
}
public void setVerifyAmount(Integer verifyAmount) {
this.verifyAmount = verifyAmount;
}
public void setOrderAmountStr(String orderAmountStr) {
this.orderAmountStr = orderAmountStr;
}
public void setVerifyAmountStr(String verifyAmountStr) {
this.verifyAmountStr = verifyAmountStr;
}
public List<WxDateAmountRecord> getOrderAmountList() {
return orderAmountList;


Ładowanie…
Anuluj
Zapisz