sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.nova.sankuai.domain.api.rongyitui;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Author Lilinhong
 * @Date 2022/6/2 14:59
 */
@Data
public class RongYiTuiResponse {
 
    @ApiModelProperty(value = "响应码")
    private String responseCode;
 
    @ApiModelProperty(value = "备注")
    private String responseMsg;
}