Commit 4815d6d8 by guojuxing

扩容审批详情修改

parent 7f0be348
...@@ -112,6 +112,7 @@ public class TransferAccountsApprovalController { ...@@ -112,6 +112,7 @@ public class TransferAccountsApprovalController {
vo.setRelationOrderType(orderDTO.getOrderType()); vo.setRelationOrderType(orderDTO.getOrderType());
vo.setOperType(orderDTO.getOperType()); vo.setOperType(orderDTO.getOperType());
vo.setOperName(orderDTO.getOperName()); vo.setOperName(orderDTO.getOperName());
vo.setPayDetail(orderDTO.getPayDetail());
String couponName = orderDTO.getCouponName(); String couponName = orderDTO.getCouponName();
if (!StringUtils.isBlank(couponName)) { if (!StringUtils.isBlank(couponName)) {
ServiceDiscountVO discountVO = new ServiceDiscountVO(); ServiceDiscountVO discountVO = new ServiceDiscountVO();
...@@ -133,6 +134,7 @@ public class TransferAccountsApprovalController { ...@@ -133,6 +134,7 @@ public class TransferAccountsApprovalController {
serviceInfoVO.setTotalAmount(itemDTO.getSaleAmount()); serviceInfoVO.setTotalAmount(itemDTO.getSaleAmount());
serviceInfoVO.setServeInfo(itemDTO.getServeInfo()); serviceInfoVO.setServeInfo(itemDTO.getServeInfo());
serviceInfoVO.setApplicationId(itemDTO.getApplicationId()); serviceInfoVO.setApplicationId(itemDTO.getApplicationId());
serviceInfoVO.setPayDetail(itemDTO.getPayDetail());
serviceInfoVOList.add(serviceInfoVO); serviceInfoVOList.add(serviceInfoVO);
} else if (itemDTO.getServeType() == 2) { } else if (itemDTO.getServeType() == 2) {
//license //license
...@@ -144,6 +146,7 @@ public class TransferAccountsApprovalController { ...@@ -144,6 +146,7 @@ public class TransferAccountsApprovalController {
licenseVO.setServeQuantity(itemDTO.getServeQuantity()); licenseVO.setServeQuantity(itemDTO.getServeQuantity());
licenseVO.setServeInfo(itemDTO.getServeInfo()); licenseVO.setServeInfo(itemDTO.getServeInfo());
licenseVO.setApplicationId(itemDTO.getApplicationId()); licenseVO.setApplicationId(itemDTO.getApplicationId());
licenseVO.setPayDetail(itemDTO.getPayDetail());
licenseVOList.add(licenseVO); licenseVOList.add(licenseVO);
} else if (itemDTO.getServeType() == 3) { } else if (itemDTO.getServeType() == 3) {
//拓展包 //拓展包
...@@ -153,6 +156,7 @@ public class TransferAccountsApprovalController { ...@@ -153,6 +156,7 @@ public class TransferAccountsApprovalController {
expandPackageVO.setServeQuantity(itemDTO.getServeQuantity()); expandPackageVO.setServeQuantity(itemDTO.getServeQuantity());
//销售价 //销售价
expandPackageVO.setTotalAmount(itemDTO.getSaleAmount()); expandPackageVO.setTotalAmount(itemDTO.getSaleAmount());
expandPackageVO.setPayDetail(itemDTO.getPayDetail());
expandPackageVO.setServeInfo(itemDTO.getServeInfo()); expandPackageVO.setServeInfo(itemDTO.getServeInfo());
expandPackageVOList.add(expandPackageVO); expandPackageVOList.add(expandPackageVO);
} }
......
...@@ -37,6 +37,11 @@ public class ExpandPackageVO implements Serializable{ ...@@ -37,6 +37,11 @@ public class ExpandPackageVO implements Serializable{
*/ */
private String serveInfo; private String serveInfo;
/**
* 支付详情json{100:现金 ,101:xxx}
*/
private String payDetail;
public String getServeName() { public String getServeName() {
return serveName; return serveName;
...@@ -77,4 +82,12 @@ public class ExpandPackageVO implements Serializable{ ...@@ -77,4 +82,12 @@ public class ExpandPackageVO implements Serializable{
public void setServeInfo(String serveInfo) { public void setServeInfo(String serveInfo) {
this.serveInfo = serveInfo; this.serveInfo = serveInfo;
} }
public String getPayDetail() {
return payDetail;
}
public void setPayDetail(String payDetail) {
this.payDetail = payDetail;
}
} }
...@@ -39,6 +39,11 @@ public class LicenseVO implements Serializable{ ...@@ -39,6 +39,11 @@ public class LicenseVO implements Serializable{
*/ */
private Long applicationId; private Long applicationId;
/**
* 支付详情json{100:现金 ,101:xxx}
*/
private String payDetail;
public String getServeInfo() { public String getServeInfo() {
return serveInfo; return serveInfo;
} }
...@@ -86,4 +91,12 @@ public class LicenseVO implements Serializable{ ...@@ -86,4 +91,12 @@ public class LicenseVO implements Serializable{
public void setApplicationId(Long applicationId) { public void setApplicationId(Long applicationId) {
this.applicationId = applicationId; this.applicationId = applicationId;
} }
public String getPayDetail() {
return payDetail;
}
public void setPayDetail(String payDetail) {
this.payDetail = payDetail;
}
} }
...@@ -43,6 +43,11 @@ public class ServiceInfoVO implements Serializable{ ...@@ -43,6 +43,11 @@ public class ServiceInfoVO implements Serializable{
private BigDecimal totalAmount; private BigDecimal totalAmount;
/** /**
* 支付详情json{100:现金 ,101:xxx}
*/
private String payDetail;
/**
* 应用id * 应用id
*/ */
private Long applicationId; private Long applicationId;
...@@ -106,4 +111,12 @@ public class ServiceInfoVO implements Serializable{ ...@@ -106,4 +111,12 @@ public class ServiceInfoVO implements Serializable{
public void setLicenseVOList(List<LicenseVO> licenseVOList) { public void setLicenseVOList(List<LicenseVO> licenseVOList) {
this.licenseVOList = licenseVOList; this.licenseVOList = licenseVOList;
} }
public String getPayDetail() {
return payDetail;
}
public void setPayDetail(String payDetail) {
this.payDetail = payDetail;
}
} }
...@@ -105,6 +105,10 @@ public class TransferApprovalServiceVO implements Serializable{ ...@@ -105,6 +105,10 @@ public class TransferApprovalServiceVO implements Serializable{
*/ */
private Double totalCountFee; private Double totalCountFee;
/** /**
* 支付详情json{100:现金 ,101:xxx}
*/
private String payDetail;
/**
* 订单创建时间 * 订单创建时间
*/ */
private Date orderCreateTime; private Date orderCreateTime;
...@@ -435,4 +439,12 @@ public class TransferApprovalServiceVO implements Serializable{ ...@@ -435,4 +439,12 @@ public class TransferApprovalServiceVO implements Serializable{
public void setOrderNumber(String orderNumber) { public void setOrderNumber(String orderNumber) {
this.orderNumber = orderNumber; this.orderNumber = orderNumber;
} }
public String getPayDetail() {
return payDetail;
}
public void setPayDetail(String payDetail) {
this.payDetail = payDetail;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment