package com.nova.sankuai.domain.dto.callback.syh;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@ApiModel(value = "随易花DTO")
|
@Data
|
public class SyhCallbackRequestDTO {
|
|
@ApiModelProperty(value = "时间戳字符串")
|
private String timestamp;
|
|
@ApiModelProperty(value = "加密后的数据内容,使用hutool工具类加解密")
|
private String signs;
|
}
|