You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
955 B

  1. package com.example.demo.domain.DTO;
  2. import com.alibaba.excel.annotation.ExcelIgnore;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import lombok.Data;
  5. import lombok.NoArgsConstructor;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. /**
  9. * @program: gold-java
  10. * @ClassName addFundsDTO
  11. * @description:
  12. * @author: Ethan
  13. * @create: 202604-02 16:56
  14. * @Version 1.0
  15. **/
  16. @Data
  17. @NoArgsConstructor
  18. public class AddFundsDTO {
  19. private String performanceMarket; //业绩归属地区
  20. private Integer goodNum; //商品数量
  21. private String payType; //付款方式
  22. private Integer paymentCurrency; //付款币种
  23. private BigDecimal paymentAmount; //付款金额
  24. @ExcelIgnore
  25. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai")
  26. private Date payTime; //付款时间
  27. private BigDecimal handlingCharge; //手续费
  28. private String remark; //备注
  29. }