package com.nova.sankuai.domain.vo.huifubao; import com.alibaba.fastjson.annotation.JSONField; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class HuiFuBaoSendPayInfo { @JSONField(name = "agent_id") @ApiModelProperty(value = "商户编号") private String agentId; @JSONField(name = "agent_bill_id") @ApiModelProperty(value = "商户订单号") private String agentBillId; @JSONField(name = "ret_code") @ApiModelProperty(value = "返回码值") private String retCode; @JSONField(name = "ret_msg") @ApiModelProperty(value = "返回码信息提示") private String retMsg; @JSONField(name = "hy_token_id") @ApiModelProperty(value = "支付授权码") private String hyTokenId; }