liuxiaolong
2019-05-06 a7bed6b4cfecd61ec153818945f982c5bb796b98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.cloud.user.model;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 *  c 服务返回结果 分享 和 更新转态
 */
@Data
@Api(description = "返回前端赢射",value = "DataBaseStatus")
public class DataBaseStatus implements Serializable {
    private static final long serialVersionUID = 2876686363222137803L;
    /**
     * 底库 uuid
     */
    @ApiModelProperty(value = "底库id uuid")
    private String uuid;
    /**
     * 底库 名称
     */
    @ApiModelProperty(value = "底库名称 tableName")
    private String tableName;
    /**
     * 是否 存在1 不存在0 以及返回失败-1
     */
    @ApiModelProperty(value = "isSuccess : 1:存在、0:不存在、-1:返回失败")
    private String isSuccess;
    /**
     * 转态 信息
     */
    @ApiModelProperty(value = "失败信息")
    private String statusMsg;
 
    public DataBaseStatus() {
    }
 
    public DataBaseStatus(String uuid, String tableName, String isSuccess, String statusMsg){
        this.uuid = uuid;
        this.tableName = tableName;
        this.isSuccess = isSuccess;
        this.statusMsg = statusMsg;
    }
}