sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.nova.sankuai.domain.api.hht;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("好汇推匹配后返回的结果")
public class HhtHead {
    @ApiModelProperty(value = "返回标签 YES 或者 NO")
    private String returnFlag;
 
    @ApiModelProperty(value = "错误码,000000为成功。 其他为失败")
    private String returnCode;
 
    @ApiModelProperty(value = "单次请求唯一号")
    private String serialNo;
 
    @ApiModelProperty(value = "响应信息")
    private String returnMessage;
 
    @ApiModelProperty(value = "推送是否成功结果 true: 成功  false: 失败")
    private Boolean result;
}