puzhibing
2024-01-30 03f1f3372a10a08f96f3308bfa099e86a55046d0
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
package com.ruoyi.system.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName MgtQuickEntryGetVo
 * @Description TODO
 * @Author jqs
 * @Date 2023/6/7 11:50
 * @Version 1.0
 */
@Data
public class MgtQuickEntryGetVo {
 
    @ApiModelProperty(value = "快速入口Id 新增不传")
    private Long entryId;
 
    @ApiModelProperty(value = "快速入口图片")
    private String entryUrl;
 
    @ApiModelProperty(value = "快速入口名称")
    private String entryName;
 
    @ApiModelProperty(value = "链接类型1.外部2.内部3.无")
    private Integer targetType;
 
    @ApiModelProperty(value = "链接类型1.手动输入2.选择已有")
    private Integer linkType;
 
    @ApiModelProperty(value = "链接地址")
    private String linkUrl;
 
    @ApiModelProperty(value = "跳转类型1.门店详情2.秒杀活动3领券中心4.商城列表5.关于洪瑞堂6.赚取积分7.建议有奖")
    private Integer jumpType;
 
    @ApiModelProperty(value = "跳转id")
    private String jumpId;
 
    @ApiModelProperty(value = "快速入口排序")
    private Integer entrySort;
 
}