1
sunshine
2024-11-05 92a9e53e82c74d36a72eb92f93777bbb16e2db73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.nova.sankuai.domain.api.rongduoduo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author ephemeral
 * @date 2021/12/30 10:23
 */
@Data
public class RongDuoDuoResponse {
 
    public static final int SUCCESS = 0;
 
    @ApiModelProperty(value = "状态码")
    private Integer status;
 
    @ApiModelProperty(value = "返回消息")
    private String mes;
}