CrossQuotalInquiryResponseDto.java 932 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.kmall.manager.dto;
  2. import java.io.Serializable;
  3. /**
  4. * 跨境额度查询接口返回数据
  5. * @author huangyq
  6. * @version 1.0
  7. * 2019-12-17 16:15
  8. */
  9. public class CrossQuotalInquiryResponseDto implements Serializable {
  10. private static final long serialVersionUID = -4707152622304052229L;
  11. private String serviceTime;
  12. private Double totalAmount;
  13. private Double innerbalance;
  14. public String getServiceTime() {
  15. return serviceTime;
  16. }
  17. public void setServiceTime(String serviceTime) {
  18. this.serviceTime = serviceTime;
  19. }
  20. public Double getTotalAmount() {
  21. return totalAmount;
  22. }
  23. public void setTotalAmount(Double totalAmount) {
  24. this.totalAmount = totalAmount;
  25. }
  26. public Double getInnerbalance() {
  27. return innerbalance;
  28. }
  29. public void setInnerbalance(Double innerbalance) {
  30. this.innerbalance = innerbalance;
  31. }
  32. }