huliguo
4 天以前 ef8cf60d8a9c33098e2e7be51bd4f0d6db6c0693
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.system.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class AppBottomNavVO {
    @ApiModelProperty(value = "导航栏id")
    private Integer id;
    @ApiModelProperty(value = "导航栏名称")
    private String name;
 
}