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
24 lines
405 B
package com.example.demo.domain.DTO;
|
|
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName FirstdataRequestDTO
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−12-08 14:03
|
|
* @Version 1.0
|
|
**/
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
public class FirstdataRequestDTO {
|
|
String key;
|
|
String secret;
|
|
long clientRequestId;
|
|
long time ;
|
|
String hmacBase64;
|
|
|
|
}
|