2
sunshine
2024-11-05 d1f9fb55a136e589a5ad588ed9a93ce9272917da
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
package com.nova.sankuai.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "渠道城市下载链接列表Vo")
public class ChannelCityLinkListVo {
 
    @ApiModelProperty(value = "主键id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "渠道名称")
    private String channelName;
 
    @ApiModelProperty(value = "城市名称")
    private String cityName;
 
    @ApiModelProperty(value = "安卓下载链接")
    private String androidLink;
 
    @ApiModelProperty(value = "ios下载链接")
    private String iosLink;
 
}