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.

24 lines
405 B

  1. package com.example.demo.domain.DTO;
  2. import lombok.Data;
  3. import lombok.NoArgsConstructor;
  4. /**
  5. * @program: gold-java
  6. * @ClassName FirstdataRequestDTO
  7. * @description:
  8. * @author: Double
  9. * @create: 202512-08 14:03
  10. * @Version 1.0
  11. **/
  12. @Data
  13. @NoArgsConstructor
  14. public class FirstdataRequestDTO {
  15. String key;
  16. String secret;
  17. long clientRequestId;
  18. long time ;
  19. String hmacBase64;
  20. }