fix
Helius
2021-11-05 d3b7e2e9cb1dc45f98d8828fb8ac292ffccfb327
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.modules.member.parameter.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AppVersionVo", description = "版本号信息")
public class AppVersionVo {
    
    @ApiModelProperty(value = "版本号")
    private String version;
    
    @ApiModelProperty(value = "下载地址")
    private String address;
    
    @ApiModelProperty(value = "类型:1安卓,2苹果")
    private Integer type;
 
}