| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | @Data |
| | | @ApiModel("签约方信息") |
| | | public class NotifyReq { |
| | | public class NotifyReq implements Serializable { |
| | | |
| | | private String method ;//业务类型 * post |
| | | private String version ;//版本 * post |
| | | private Long timestamp ;//时间戳(精确到毫秒) * post |
| | | private long timestamp ;//时间戳(精确到毫秒) * post |
| | | private NotifyDataReq data ;//JSONObject结果 * post |
| | | private String sign;// 签名sign(sha1对前面的参数签名) * post |
| | | private String appkey;// appkey * post |